.shop-main {
    margin: 5%;
}

.reset-password {
    margin: 8% auto;
}

.shop-image {
    width: 40%;
    margin: 5% 0;
}

.password-update {
    margin: 10% 0 10% 0;
}

.price-m {
    margin-top: 50px;
    margin-bottom: 50px;
}
.log-m {
    margin-top: 8%;
    margin-bottom: 10%;
}

.top-m {
    margin-top: 20%;
    color: #fff;
}

.payment {
    margin: 5%;
}
.pimage
{

  width: 150px;
}

.top-image {
    text-align: center;
    background: url(../images/topimage.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.razorpay-payment-button
{
  background-color: #1d415f;
  border: none;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

 


.top-border {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

.top-button {
    position: absolute;
    top: 70%;
    left: 60%;
    transform: translate(0%, -0%);
}
.top-text {
    font-family: sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.top-sub {
    position: absolute;
    top: 58%;
    left: 58%;
    color: #fff;
}
a#navbarDropdown.nav-link.dropdown-toggle {
background-color: transparent;

}


@media only screen and (min-width: 768px) {
    .shop-head {
        background-color: #fff;
        margin-top: 5%;
        padding-bottom: 2%;
    }
}
.navbar-nav {
    height: 63px;
    width: 860px;
}
@media screen and (max-width: 768px) {
    .navbar-nav {
        height: 430px;
        width: 130px;
    }
}
.row {
    margin-right: 0px;
}

.internship-form {
    margin-top: 5%;
}
.total-amount
{

  margin-bottom: 20px;
}

.totalamount-price
{
  color:#b12704; font-size: 2rem;
}

.btn {
    padding: 5px;
}

.load-more {
    float: right;
    font-weight: bold;
}

.items {
    margin-bottom: 5%;
}

.shop-cart {
    background-color: #fff;
    padding: 50px;
}

.cart-count {
    color: red;
    background-color: white;
    padding: 3px;
    border-radius: 50px;
    margin-right: -6px;
    font-weight: lighter;
}

.cart-image {
    width: 50%;
}
.share-link,
.details-sub {
    margin-top: 4%;
}

.btn-cart-style {
    margin: 7px;
}
.tab-cont {
    text-align: justify;
    line-height: 2;
    margin-top: 20px;
}

/* cart image zooming */

.zoom {
    transition: transform 0.1s;
}

.zoom:hover {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}

input[type="number"]::-webkit-inner-spin-button {
    opacity: 1;
}

.card-body {
    text-align: left;
}
a .deleteRecord {
    padding: 10%;
    display: inline;
}

.price-index
{

font-size: 2rem;

}

.address-btn {
    border: none;
    /* color: white; */
    padding: 5px;
    text-align: center;

    /* display: inline-block; */
    /* font-size: 16px; */
    margin: 4px 4px 4px 0;
    cursor: pointer;
}

.cart-card-body {
    text-align: left;
}

.buy-now {
    margin: 5% 0 5% 0;
    /* margin-top: 10%;
  margin-bottom: 10%; */
}

.buy-total {
    float: right;
    margin-top: 5%;
}

/* discription tabs */

#Components-tab,
#Description-tab,
#Projects-tab {
    color: black;
    background-color: #fff;
}

.fa-small {
    color: #ffdf00;
}
table {
    padding: 8px;
    border-collapse: collapse;
    width: 100%;
}
.descriptions-table th,
td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
.responstable td,
th {
    border: none;
    text-align: left;
    padding: 8px;
    text-align: center;
    font-size: 1.7rem;
}

.details {
    margin-top: -5%;
}
#myTab {
    margin-top: 10%;
}

.item-cart {
    width: 70%;
    margin-bottom: 3%;
}

.item2 {
    width: 70%;
}

@mixin responstable(
    $breakpoint: $table-breakpoint,
    $background-color: $table-background-color,
    $text-color: $table-text-color,
    $outer-border: $table-outer-border,
    $cell-border: $table-cell-border,
    $border-radius: none,
    $highlight-color: none,
    $header-background-color: $table-background-color,
    $header-text-color: $table-text-color,
    $header-border: $table-cell-border
) {
    .responstable {
        margin: 1em 0;
        width: 100%;
        overflow: hidden;
        background: $background-color;
        color: $text-color;
        border-radius: $border-radius;
        border: $outer-border;

        tr {
            border: $cell-border;
            &:nth-child(odd) {
                // highlight the odd rows with a color
                background-color: $highlight-color;
            }
        }

        th {
            display: none; // hide all the table header for mobile
            border: $header-border;
            background-color: $header-background-color;
            color: $header-text-color;
            padding: 1em;
            &:first-child {
                // show the first table header for mobile
                display: table-cell;
                text-align: center;
            }
            &:nth-child(2) {
                // show the second table header but replace the content with the data-th from the markup for mobile
                display: table-cell;
                span {
                    display: none;
                }
                &:after {
                    content: attr(data-th);
                }
            }
            @media (min-width: $breakpoint) {
                &:nth-child(2) {
                    // hide the data-th and show the normal header for tablet and desktop
                    span {
                        display: block;
                    }
                    &:after {
                        display: none;
                    }
                }
            }
        }

        td {
            display: block; // display the table data as one block for mobile
            word-wrap: break-word;
            max-width: 7em;
            &:first-child {
                display: table-cell; // display the first one as a table cell (radio button) for mobile
                text-align: center;
                border-right: $cell-border;
            }
            @media (min-width: $breakpoint) {
                border: $cell-border;
            }
        }

        th,
        td {
            text-align: left;
            margin: 0.5em 1em;
            @media (min-width: $breakpoint) {
                display: table-cell; // show the table as a normal table for tablet and desktop
                padding: 1em;
            }
        }
    }
}

@media screen and (max-width: 767px) {
    /* For mobile phones: */
    .shop-head {
        margin: 50px 0 50px 0;
    }

    .responstable td,
    th {
        border: none;
        text-align: left;
        padding: 8px;
        text-align: center;
        font-size: small;
    }
    .buy-now {
        margin: 15% 0 15% 0;
    }
    .shop-image {
        width: 80%;
        margin: 5%;
    }

    .top-m {
        margin-top: 30%;
        color: #fff;
        margin-right: 5px;
        margin-left: 5px;
    }

    .pimage
    {

      width: 100px;
    }
    
    .img-list
    {
      display: flex;
    }
    .item2 {
    width: 100%;
}

.details {
    margin-top: 15%;
}
.item-cart {
    width: 100%;
    margin-bottom: 3%;
}




}

// Include the mixin (with extra options as overrides)

@include responstable(
    $border-radius: $table-border-radius,
    $highlight-color: $table-highlight-color,
    $header-background-color: $table-header-background-color,
    $header-text-color: $table-header-text-color,
    $header-border: $table-header-border
);
