@import url("media.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "lato";
}

:root {
    --primary_color: #FC3A79;
    --secondary_color: #FE572E;
    --background_color: rgba(0, 0, 0, 0.10);
    --gradient_color: linear-gradient(#FE572E, #FC3A79);
}

body {
    max-width: 100vw;
    background-color: var(--background_color);
}
#main_container {
    height: auto;
    max-width: 90vw;
    margin: 0 auto;
}
.header{
    min-height: 60vh;
    background-color: #fc3a7715;
    padding: 0 1rem;
}
#menu{
    display: none;
}
.explore {
    all: unset;
    background-color: var(--primary_color);
    color: #f4f4f4;
    border-radius: 1rem;
    padding: 0.4rem 1rem;
    animation-delay: 2s;
    cursor: pointer;
    transition: 0.4s;

    &:hover {
        background: linear-gradient(to right, #FC3A79, #FE572E);
    }
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
}
nav .logo {
    height: 2.5rem;
    width: 8rem;
}
nav ul {
    display: flex;
    list-style-type: none;
}
nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 0.5rem;
    transition: 0.4s;
    cursor: pointer;

    &:hover {
        color: #FC3A79;
        font-weight: 600;
    }
}
nav .nav_links i {
    color: black;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 0.2rem;
    z-index: 1;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: #FC3A79;
    }
}


/*** This is Hero Section ****/


.hero_section_container {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero_section_container .hero_section_content {
    width: 30vw;
}
.hero_section_content small {
    color: var(--primary_color);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    line-height: 2rem;
    filter: blur(15px);
    opacity: 0;
    animation: showText 1.5s 1s infinite;
}
.hero_section_content h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 800;
    animation-delay: 1.2s;
}
.hero_section_content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    animation-delay: 1.4s;
}
.hero_section_content p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.80);
    margin-bottom: 1rem;
    animation-delay: 1.6s;
}
.hero_section_content .explore i {
    margin-left: 0.4rem;
}
.hero_section_content h1,
.hero_section_content h2,
.hero_section_content p,
.hero_section_content .explore {
    filter: blur(15px);
    opacity: 0;
    animation: showText 1s 1s forwards 1;
}
@keyframes showText {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translatey(-10px);
    }
}
.hero_section_content .rating {
    margin: 0.5rem 0 0 0.5rem;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
}
.hero_section_content .rating i {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
    margin-right: 0.5rem;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: #FC3A79;
    }
}
.hero_section_image {
    height: 30rem;
    width: 30vw;
}
.hero_section_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/**** This is form Section ****/

.hero_section_form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #ffffff;
    height: 45vh;
    border-radius: 1rem;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.30);
    padding: 1rem;
}
.hero_section_form .color_input p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.70);
}
.color_input button {
    all: unset;
    background-color: #FC3A79;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    margin: 0.1rem;
    cursor: pointer;
}
.hero_section_form .selection_input p {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
}
.hero_section_form .selection_input input, select {
    border: none;
    outline: none;
    width: 100%;
    color: rgba(0, 0, 0, 0.70);
    background-color: #fc3a7715;
    padding: 0.2rem;
    border-radius: 1rem;
    margin: 0.3rem 0;
}
.hero_section_form .selection_input button {
    border: none;
    outline: none;
    color: rgba(0, 0, 0, 0.70);
    background-color: #fc3a7715;
    padding: 0.4rem;
    margin: 0.3rem;
}
.hero_section_form .shop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero_section_form .shop button {
    all: unset;
    background-color: #FC3A79;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.2rem 1rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        background-color: #FE572E;
    }
}
.hero_section_form .shop .back {
    text-decoration: underline;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.50);

    &:hover {
        color: rgba(0, 0, 0, 0.70);
    }
}

/* This is Tags Section */

.header .tags {
    background-color: #f4f4f4;
    opacity: 0.5;
    box-shadow: 2px 2px 6px 1px rgb(124, 124, 124);
    height: 20vh;
    width: 80vw;
    margin: 0 auto;
    border-radius: 1rem;
    z-index: 100;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    bottom: -7%;
    left: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #FC3A79;
}
.tags .tag {
    position: relative;
    background-color: #ffffff;
}
.tags .tag::after {
    content: "";
    height: 0.2rem;
    width: 4rem;
    border-radius: 1rem;
    background-color: #FE572E;
    position: absolute;
    top: -0.3rem;
    left: 0;
}

/********* This is Gallery Section ***********/

.gallery_section_container {
    margin: 150px auto 50px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    height: 70vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.gallery_section_container .gallery_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.7s;
    opacity: 0;
}
.gallery_section_container .gallery_content p {
    background-color: #fc3a7715;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.70);
    line-height: 2rem;
    transition: 0.6s;
}
.gallery_section_container .gallery_content button {
    all: unset;
    background-color: #FC3A79;
    padding: 0.4rem 1rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    color: white;
    cursor: pointer;

    &:hover {
        background-color: #FE572E;
    }
}
.gallery_section_container .gallery_image1 {
    background-image: url("../Images/homepage_images/gallery1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.5s ease;

    &:hover {
        transform: scale(1.1);
    }
}
.gallery_section_container .gallery_image2 {
    background-image: url("../Images/homepage_images/gallery2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.5s ease;

    &:hover {
        transform: scale(1.1);
    }
}
.gallery_section_container .gallery_image3 {
    background-image: url("../Images/homepage_images/gallery3.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: 0.5s ease;

    &:hover {
        transform: scale(1.1);
    }
}
.gallery_section_container .gallery_image1:hover .gallery_content {
    opacity: 1;
}
.gallery_section_container .gallery_image2:hover .gallery_content {
    opacity: 1;
}
.gallery_section_container .gallery_image3:hover .gallery_content {
    opacity: 1;
}


/****** This is Cards Section ******/

.cards_section_container {
    background-color: #ffffff;
}
.cards_section_container h1 {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    padding: 4rem 0 0 0;
}
.cards_section_container h1::after {
    content: "";
    height: 0.2rem;
    width: 6rem;
    border-radius: 1rem;
    background-color: #FE572E;
    position: absolute;
    left: 41%;
    top: 50%;
    transform: translateX(-50px);
}
.cards_section_container .cards_row {
    padding: 6rem 0;
    width: 80vw;
    margin: 0 auto;
    gap: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cards_row .main_card {
    background-color: #fafafa;
    padding: 1rem;
    margin: 0 auto;
    transition: 0.5s;

    &:hover {
        transform: translateY(-0.4rem);
    }
}
.main_card .card {
    margin: 0 auto;
    height: 16rem;
    width: 16rem;
}
.main_card h6 {
    font-size: 0.8rem;
    font-weight: 400;
}
.main_card .icon i {
    font-size: 0.8rem;
    font-weight: 400;
    color: #FC3A79;
}
.main_card .store_now{
    all: unset;
    font-size: 0.7rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(to right, #FE572E, #FC3A79);
    margin: 0.4rem 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: 0.5s linear;

    &:hover {
        width: 50%;
    }
}

/****** This is New Arrival Section *******/

.new_arrival_section {
    margin: 50px auto;
    background-color: #fc3a7715;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
}
.new_arrival_section .new_arrival_image {
    height: 20rem;

}
.new_arrival_section .new_arrival_content h1 {
    font-weight: 300;
    font-size: 2.5rem;
    color: #FE572E;
    filter: blur(20px);
    opacity: 0;
    animation: showHead 0.3s 1s infinite;
}
@keyframes showHead {
    to {
        opacity: 1;
        filter: blur(0);
    }
}
.new_arrival_content h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin: 1rem 0;
}

/******* This is Footer Section *******/

.footer {
    height: 50vh;
    /* width: 90vw; */
    /* margin: 0 auto; */
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 2rem 0 2rem;
}
.footer .main_footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.main_footer .install_links p {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 1rem 0;
}
.install_links .install_icons {
    display: flex;
}
.install_icons img {
    margin-top: 1rem;
    width: 8rem;
    cursor: pointer;
}
.useful_links h2 {
    font-size: 1.2rem;
    font-weight: 600;
}
.useful_links ul {
    list-style-type: none;
    margin-top: 2rem;
}
.useful_links ul li a {
    text-decoration: none;
    color: black;
    font-weight: 300;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        color: #FE572E;
    }
}
.social_links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.social_links .social_head {
    font-size: 1.2rem;
    font-weight: 600;
}
.social_logo i {
    padding: 0 0.2rem;
    cursor: pointer;
    transition: 0.3s;
}
.social_links .footer_logo {
    width: 8rem;
}
.footer_copy {
    border-top: 1px solid #000;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/************************ This is Product Section Designing CSS ***********************/


.product_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_header_content small {
    color: var(--primary_color);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    line-height: 2rem;
}
.product_header_content h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: 700;
}
.product_header_content h2 {
    color: var(--secondary_color);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 3rem;
    filter: blur(15px);
    opacity: 0;
    animation: showHead 0.3s 1s infinite;
}
.product_header_content .explore_more {
    all: unset;
    background-color: var(--primary_color);
    color: #f4f4f4;
    border-radius: 1rem;
    padding: 0.4rem 1rem;
    animation-delay: 2s;
    cursor: pointer;
    transition: 0.4s;

    &:hover {
        background: linear-gradient(to right, #FC3A79, #FE572E);
    }
}
.product_header_image {
    background-image: url("../Images/homepage_images/hero_img4.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 18rem;
    width: 20rem;
    animation: slider 4s 3s linear infinite;
}

@keyframes slider {
    40% {
        background-image: url("../Images/homepage_images/hero_img5.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 18rem;
        width: 20rem;
        ;
    }

    80% {
        background-image: url("../Images/homepage_images/hero_img2.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 18rem;
        width: 20rem;
    }

    100% {
        background-image: url("../Images/homepage_images/hero_img1.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        height: 18rem;
        width: 20rem;
    }
}

/***** This is All products Section ******/

.products_container {
    margin: 100px auto;
}
.products_container .product_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.products_container .product_header h1 {
    font-size: 3rem;
    line-height: 3rem;
    position: relative;
}
.products_container .product_header h1::after {
    content: "";
    height: 0.2rem;
    width: 6rem;
    border-radius: 1rem;
    background-color: #FE572E;
    position: absolute;
    left: 0.4rem;
    top: -0.4rem;
}
.products_container .product_header select {
    border: 0.5px solid #FC3A79;
    padding: 0.3rem 0.6rem;
    width: auto;
    border-radius: 0rem;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
}
.products_display {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 2rem;
}
.products_display a {
    text-decoration: none;
    color: #000;
}
.product_card{
    justify-self: center;
    align-self: center;
    background-color: #fff;
    border-radius: 0.2rem;
    filter: drop-shadow(-2px 1px 4px rgba(0, 0, 0, 0.50));
    transition: 0.7s;
    padding: 1rem;

    &:hover {
        transform: translateY(-0.5rem);
    }
}
.product_card .product_card_img {
    border-radius: 0.2rem;
    height: 17rem;
    width: 20rem;
}
.product_card .product_card_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_card .product_card_content {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}
.product_card_content h3 {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
}
.product_card_content p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    font-weight: 800;
}
.product_card_content .content_right i {
    color: #FC3A79;
    font-size: 0.9rem;
    line-height: 1.5rem;
}
.product_card .store_now {
    all: unset;
    font-size: 0.7rem;
    width: 100%;
    text-align: center;
    border-radius: 0.2rem;
    color: #fff;
    background: linear-gradient(to right, #FE572E, #FC3A79);
    padding: 0.5rem 0;
    transition: 0.5s linear;

    &:hover {
        width: 50%;
    }
}
.products_container .see_more_products {
    display: flex;
    justify-content: center;
    align-items: center;
}
.see_more_products button {
    all: unset;
    border: 0.5px solid #FC3A79;
    padding: 0.4rem 0.8rem;
    border-radius: 0.2rem;
    margin: 0 0.2rem;
    transition: 0.3s;

    &:hover {
        background-color: #fc3a7738;
    }
}

/*************************** This is Product Detail Section ******************/

.header .head {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 4rem 0 1rem 0;
}
.main_detail_section {
    background-color: #fff;
    margin: 4rem 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    gap: 2rem;
}
.product_detail_image{
    display: grid;
    grid-template-columns: 0.2fr 0.8fr;
    min-width: 45vw;
    height: 85vh;
}
.product_detail_image .sub_images img {
    margin: 0.2rem 0;
    height: 20vh;
    min-width: 10vw;
}
.product_detail_image .main_image {
    min-width: 35vw;
    max-height: 85vh;
}
.product_detail_image .main_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_detail_content h1 {
    font-size: 3rem;
    line-height: 4rem;
}
.product_detail_content h4 {
    font-size: 1.2rem;
    line-height: 3rem;
    color: rgba(0, 0, 0, 0.80);
}
.product_detail_content p {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.60);
    width: 40vw;
}
.product_detail_content .clrs , .size p, .quantity p{
    font-size: 0.9rem;
    color: black;
    line-height: 2rem;
}
.product_detail_content button {
    all: unset;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
}
.product_detail_content .size button {
    all: unset;
    border: 0.5px solid #FC3A79;
    padding: 0.2rem 0.4rem;
    margin: 0 0.5rem;

    &:hover {
        background-color: #fc3a7715;
    }

}
.product_detail_content .quantity input {
    all: unset;
    border: 0.5px solid #FC3A79;
    width: 4rem;
    height: 1.5rem;
    margin: 0 0 2rem 0.5rem;
}
.product_detail_content .add_to_cart{
    width: 20rem;
    height: auto;
    background-color: #FC3A79;
    color: white;
    text-align: center;
    line-height: 2rem;
    margin: 0.5rem 0;
    border-radius: 1rem;
    transition: 0.5s;
    cursor: pointer;

    &:hover {
        background: linear-gradient(to right, #FE572E, #FC3A79);
    }
}
.product_detail_content .buy_now {
    width: 20rem;
    height: auto;
    background-color: #FE572E;
    color: white;
    text-align: center;
    line-height: 2rem;
    margin: 0.5rem 0;
    border-radius: 1rem;
    transition: 0.5s;
    cursor: pointer;

    &:hover {
        background: linear-gradient(to right, #FE572E, #FC3A79);
    }
}
.product_detail_content .or {
    margin-left: 9rem;
    color: #000;
}
.product_detail_content .checkout1 {
    width: 20rem;
    height: auto;
    border: 1px solid black;
    color: rgb(0, 0, 0);
    text-align: center;
    line-height: 2rem;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: 0.3s;

    &:hover {
        transform: scale(1.1);
    }
}
.product_detail_content .checkout1 i {
    margin-left: 0.4rem;
}
.product_detail_content .return {
    color: #000;
    margin: 0.5rem 0;
}
.product_detail_content .usps {
    margin: 0.5rem 0;
}
.product_detail_content .usps i {
    font-size: 1rem;
    padding: 0 0.2rem;
    color: rgba(0, 0, 0, 0.70);
}


/****** Related Products *******/


.related_product_section {
    margin: 4rem 0;
    min-height: 60vh;
}
.related_product_section h1 {
    font-size: 2rem;
    line-height: 2rem;
    padding: 1rem 0 2rem 1rem;
    font-weight: 800;
}
.related_product_section .related_product_container {
    width: 90vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.related_product_container .related_product{
    justify-self: center;
    filter: drop-shadow(1px 1px 2px 2px #ccc);
    height: 45vh;

    transition: 0.5s linear;

    &:hover{
        transform: translateY(-5px);
    }
}
.related_product_container .related_product img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related_product_section p {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0;
}
.related_product_section p a {
    color: #FE572E;
    font-family: "lato";
}

/**************************** This is Cart Section **************************/

.shipping_process {
    background-color: #f4f4f4;
    opacity: 0.5;
    box-shadow: 2px 2px 6px 1px rgb(124, 124, 124);
    height: 20vh;
    width: 80vw;
    margin: 4rem auto 0;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #FC3A79;
}
.shipping_process .process {
    border: 2px solid #FC3A79;
    padding: 2rem;
}
.cart_header {
    min-height: 140vh;
}
.cart_header h1 {
    margin: 1rem 0 0 0;
}
.cart_table table {
    margin-top: 1rem;
    border-top: 2px solid #FC3A79;
    border-collapse: collapse;
    background-color: white;
    width: 100%;
}
.cart_table table th {
    border-bottom: 1px solid #FC3A79;
    padding: 0.5rem 4rem;
    background-color: #FC3A79;
    color: #fff;
}
table tr td {
    padding: 1rem 4rem;
    border-bottom: 1px solid #FC3A79;
}
table tr td h4 {
    color: rgba(0, 0, 0, 0.90);
}
table tr td p {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.80);
    padding: 0.1rem 0;
}
table tr td .clrs button {
    all: unset;
    width: 1rem;
    height: 1rem;
    margin: 0 0.5rem;
}
table tr td .size button, .qty button {
    all: unset;
    border: 0.5px solid #FC3A79;
    padding: 0.2rem 0.4rem;
    margin: 0 0.5rem;
}
table tr .cancel i {
    background-color: #fc3a7738;
    border-radius: 50%;
}

/***** Checkout Session ******/

.order_checkout_container {
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    min-height: 65vh;
}
.order_checkout_container .checkout1 h2, .checkout2 h2, .checkout3 h2 {
    font-size: 1.2rem;
    padding: 1rem 0;
}
.order_checkout_container .checkout1 {
    padding: 0 1rem;
}
.checkout1 .ship_options {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    font-size: 0.8rem;
}
.checkout1 .ship_options i {
    margin: 0 0.2rem;
}
.checkout1 .ship_details {
    margin: 1rem;
}
.checkout1 .ship_details .ship {
    display: flex;
    position: relative;
}
.checkout1 .ship_details .ship input {
    border: none;
    outline: none;
    padding: 0.2rem 1.3rem;
    margin: 0.5rem 0;
    width: 70%;
    border: 1px solid black;
}
.checkout1 .ship_details .ship i {
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    bottom: 0.2rem;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #FC3A79;
}
.checkout1 .save {
    all: unset;
    background-color: #FE572E;
    padding: 0.3rem 1rem;
    color: #fff;
    font-size: 0.8rem;
    margin: 0.5rem 0 0 1rem;
}
.checkout2 {
    padding: 0 1rem;
}
.checkout2 p {
    font-size: 0.8rem;
}
.checkout2 .pay {
    font-size: 0.6rem;
    outline: none;
    border: none;
    padding: 0.4rem 0.8rem;
    margin: 0.5rem 0.2rem;
    background: transparent;
    border: 1px solid #FC3A79;
}
.checkout2 h3 {
    font-size: 0.8rem;
}
.checkout2 .cd {
    margin-top: 0.2rem;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
}
.checkout2 input {
    all: unset;
    width: 70%;
    border: 1px solid black;
    padding: 0.2rem 0;
}
.checkout2 .save {
    all: unset;
    background-color: #FE572E;
    padding: 0.3rem 1rem;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.checkout2 .voucher {
    margin: 0.5rem 0;
}
.checkout2 .vouch_no {
    display: flex;
}
.checkout2 .apply {
    all: unset;
    background-color: #FE572E;
    padding: 0.3rem 1rem;
    color: #fff;
    font-size: 0.8rem;
}
.checkout3 {
    background-color: #fc3a7715;
    padding: 0 1rem;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.20);
}
.checkout3 table {
    width: 100%;
    border-bottom: 2px solid #FC3A79;
    padding-bottom: 1rem;
}
.checkout3 table tr td {
    padding: 0.3rem 0;
    font-size: 0.8rem;
}
.checkout3 .checkout {
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkout3 .checkout button {
    all: unset;
    background-color: #FE572E;
    color: #fff;
    border-radius: 1rem;
    width: 60%;
    text-align: center;
    padding: 0.3rem 0;
    margin: 1rem 0;
}
.checkout3 .emergency {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.80);
    margin: 1rem 0;
}
.checkout3 .more_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.checkout3 .more_info a{
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.70);
}


/********************* Login Form ********************/

.login_form{
    background-color: #fc3a7715;
    width: 32vw;
    border-radius: 1rem;
    margin: 50px auto;
    height: auto;
    padding: 1rem 2rem;
}
.login_form .profile{
    font-weight: 700;
    padding: 3rem 0;
    font-size: 1.5rem;
    text-align: center;
}
.login_form input{
    all: unset;
    border: 1px solid rgba(0, 0, 0, 0.40);
    width: 100%;
    padding: 0.5rem 0 0.5rem 0.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
}
.login_form input::placeholder{
    color: rgba(0, 0, 0, 0.70);
}
.login_form p{
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.login_form .login{
    all: unset;
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 1rem;
    border: 1px solid #FC3A79;
    color: #FC3A79;
    text-align: center;
    margin: 1rem 0;
    cursor: pointer;
    transition: background-color 0.5s linear;

    &:hover{
        background-color: #FC3A79;
        color: #f4f4f4;
    }
}
.login_form .signup p{
    text-align: center;
    padding: 0.6rem 0;
}
.login_form .signup a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.60);
}
.login_form .create_account{
    all: unset;
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 1rem;
    background-color: #FC3A79;
    color: #ffffff;
    text-align: center;
    margin: 1rem 0;
    cursor: pointer;
    transition: background-color 0.5s linear;

    &:hover{
        background-color: #f4f4f4;
        color: #FC3A79;
    }
}