@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
    --sec-color:#b49c57;
    --pri-color:#510d0d;
    --light-color:#666;
    --box-shadow:0 0.5rem 1.5rem rgba(0,0,0,.1);

}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

 body .container {

    max-width: 1440px;
    margin: 0 auto;

}

section {
    padding: 2rem 9%;
}

section:nth-child(even){
    background: #fff;
}

.sub-heading {
    text-align: center;
    color: var(--sec-color);
    font-size: 2rem;
    padding-top: 10rem;
}

.heading {
    text-align: center;
    color: var(--pri-color);
    font-size: 3rem;
    padding-top: 5rem;
    text-transform: uppercase;
    margin-bottom: 3em;
}

.heading::after {

    content: '';
    display: block;
    background-color: #510d0d;
    font-size: 20px;
    color: white;
    width: 139px;
    height: 3px;
    margin: 0.5em auto;
}

/* .heading-line {

    width:30px;
    height: 30px;
    margin: 0 auto;;
    background: #510d0d;
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;

} */

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    background: var(--pri-color);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
}

.btn:hover{
    background: var(--sec-color); 
    /* letter-spacing: .1rem; 
    padding: 1em;          */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

header .logo {
    color: var(--pri-color);
    font-size: 2.5rem;
    font-weight: bolder;
}

header .logo i {
    color: var(--sec-color);
}

header .navbar a {
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    color:var(--light-color);

}

/* header .navbar a.active, */
header .navbar a:hover {
    color: #fff;
    background:var(--sec-color);
}

header .icons i,
header .icons a {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color:var(--pri-color);
    border-radius: 50%;
    background: #eee;
}

header .icons i:hover,
header .icons a:hover {
    color: #fff;
    background: var(--sec-color);
    transform: rotate(360deg);
}

header .icons #menu-bars {
    display: none;
}

#search-form {
    position: fixed;
    top: -110%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1004;
    background: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

#search-form.active {
    top: 0;
}


#search-form #search-box {
    width: 50rem;
    border-bottom: .1rem solid #fff;
    padding: 1rem 0;
    color: #fff;
    font-size: 3rem;
    text-transform: none;
    background: none;
}

#search-form #search-box::placeholder{
    color: #eee;
}

#search-form #search-box::-webkit-search-cancel-button{
    -webkit-appearance: none;
}

#search-form label {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
}

#search-form label:hover {
    color: var(--sec-color);
}

#search-form #close {
    position: absolute;
    color: #fff;
    cursor: pointer;
    top: 2rem;
    right: 3rem;
    font-size: 5rem;
    background: none;
}

.home .home-slider .slide {
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content:space-evenly;
    align-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
} 

.home .home-slider .slide {
   
    padding: 18em 16em 0em 8em;
    object-fit: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;

} 

.home .home-slider .slide .content{
    flex: 1 1 45rem;
    margin-bottom: 20em;
}

.home .home-slider .slide .image {
    flex: 1 1 45rem;
    margin: -12em -5em 1em -7em;

}

.home .home-slider .slide .image img{
    width: 100%;
}

.home .home-slider .slide .content span {
    color: var(--sec-color);
    font-size: 2.5rem;
}

.home .home-slider .slide .content h3 {
    color: #fff;
    font-size: 5rem;
}

.home .home-slider .slide .content p {
    color: #fff;
    font-size: 2.2rem;
    padding: 0.5rem 0;
    line-height: 1.5;
    max-width: 500px;
}

.swiper-pagination-bullet-active {
    background: #fff;
}


#cakes-container {

    max-width: 1440px;
    margin: 0 auto;

}


.cakes .box-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(28rem, 1fr));
    gap: 1.5rem;

}

.cakes nav {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.cakes nav li {
    list-style: none;
    margin: 3rem 0;
    text-align: center;
}

.cakes nav li :hover{

    background-color: #ffff;
    color: maroon;
}

.cakes nav li a{
    font-size: 1.5rem;
    text-decoration: none;
    background-color: #510d0d;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    margin: 0 1rem;
    font-weight: bold;
}

.cakes .box-container .box {
    padding: 2.5rem;
    background: #fff;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.2);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cakes .box-container .box  .fa-heart,
.cakes .box-container .box  .fa-pencil{
    position: absolute;
    top: 1.5rem;
    background: #eee;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--pri-color);
}

.cakes .box-container .box  .fa-heart:hover,
.cakes .box-container .box  .fa-pencil:hover{
    background: var(--sec-color);
    color: #fff;
}

/* .cakes .box-container .box  .fa-heart {
    right: -15rem;
} */

.cakes .box-container .box  .fa-pencil {
    left: -15rem;
}

/* .cakes .box-container .box:hover  .fa-heart {
    right: 1.5rem;
} */

.cakes .box-container .box .fa-pencil {
    left: 1.5rem;
}

.cakes .box-container .box img {
    height: 17rem;
    margin: 1rem 0;
}

.cakes .box-container .box h3 {
    color: var(--pri-color);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.cakes .box-container .box .plus-wrap {
    margin-top: 7rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.cakes .box-container .box-col:hover {

    background-color: #efefef;
    cursor: pointer;

}

.cakes .box-container .box i {
    
    text-align: center;
    font-size: 4rem;
    color: #510d0d;
}

.cakes .box-container .box .stars {
    padding: 1rem 0;
}

.cakes .box-container .box .stars i {
    font-size: 1.7rem;
    color: var(--sec-color);
}

.cakes .box-container .box span {
    color: var(--sec-color);
    font-size: 1.5rem;
    font-weight: bolder;
    margin-right: 1rem;
}

.cakes .box-container .box .plus-wrap .sec-btn {
    background-color: #666;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    padding: 1em;
    margin-top: 1em;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cakes .box-container .box .plus-wrap a:hover{
    background-color: #510d0d;
}

#about-container {

    max-width: 1440px;
    margin: 0 auto;

}

.about .row {

    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    flex-direction: row-reverse;
    align-content: center;
    justify-content: center;
    margin-top: 4em;
}

.about .row .image {
    flex: 1 1 15rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row .content h3{
    color: var(--pri-color);
    font-size: 4rem;
    padding: .5rem 0;
}

.about .row .content p{
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 2;

}

.about .row .content .icons-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}

.about .row .content .icons-container .icons {
    background: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
}

.about .row .content .icons-container .icons i {
    font-size: 2.5rem;
    color: var(--sec-color);
}

.about .row .content .icons-container .icons span {
    font-size: 1.5rem;
    color: var(--pri-color);
}


#menu-container {

    max-width: 1440px;
    margin: 0 auto;

}


.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box{
    background: #fff;
    border: .1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.menu .box-container .box .image {
    width: 100%;
    height: 35rem;
    padding: 0.9rem;
    overflow: hidden;
    position: relative;
}

.menu .box-container .box .image img{
    height:inherit;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.menu .box-container .box .image .fa-heart {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color: var(--pri-color);
} 

.menu .box-container .box .image .fa-heart:hover {
    background-color: var(--sec-color);
    color: #fff;
}
 
.menu .box-container .box .content {
    padding: 2rem;
    padding-top: 0;
}

.menu .box-container .box .content .stars {
    padding-bottom: 1rem;
    padding-top: 2rem;
}

.menu .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--sec-color);
}

.menu .box-container .box .content h3 {
    color: var(--pri-color);
    font-size: 2.5rem;
}

.menu .box-container .box .content p {
    color: var(--light-color);
    font-size: 1.6rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content .price {
    color: var(--sec-color);
    margin-left: 1rem;
    font-size: 2rem;
}


/* #review-container{

    max-width: 1440px;
    margin: 0 auto;    

} */

#review {

    margin-bottom: 10em;

}


#review-container  {
    max-width: 1440px;
    margin: 0 auto;
}

.review .slide{
    padding: 4rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0,0,0,.2); 
    border-radius: .5rem;
    position: relative;
    margin-bottom: 1em;
    text-align: center;
    margin: 1em auto;
    max-width: 50em;
    height: 250px;
    cursor: pointer;
}

.review .slide .fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: #ccc;
}

.review .slide .user {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.review .slide .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .slide .user h3{
    color: var(--pri-color);
    font-size: 2rem;
    padding-bottom: .5rem;
}

.review .slide .user i{
    font-size: 1.3rem;
    color: var(--sec-color);
}

.review .slide p{
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--light-color);
}

#review-container .review-wrap section {

    background: none;

}

#review-container .review-wrap section .review-celebrate-text {

    margin: 0 auto;
    max-width: 1440px;
    text-align: center;
}

#review-container .review-wrap section .review-celebrate-text h1 {

    font-size: 5rem;
    font-family: 'Dancing Script', cursive;
    color: #510d0c;
    font-weight: bold;
    margin: -2em 0 1em 0;
}

#review-container .review-wrap section .review-celebrate-text .review-img {

    width: 300px;
    height: 300px;
    margin: 2em auto;
}

#review-container .review-wrap section .review-celebrate-text .review-img img {

    width: 100% !important;
    height: 100% !important;

}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    align-content: center;
    justify-content: center;
    align-items: baseline;
    justify-items: center;
}

.footer .box-container .box h3{
    padding: .5rem 0;
    font-size: 2.5rem;
    color: var(--pri-color);
    text-align: center;
}

.footer .box-container .box a{
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
    text-align: center;
}

.footer .box-container .box a:hover{
    color: var(--sec-color);
    text-decoration: underline;
}

.footer .credit {
    text-align: center;
    border-top: 0.1rem solid rgba(0,0,0,.1);
    font-size: 1.5rem;
    color: var(--pri-color);
    padding: 0.5rem;
    padding-top: 6.5rem;
    margin-top: 5.5rem;

}

.footer .credit span {
    color: var(--sec-color);
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items:center;
    justify-content: center;
    overflow: hidden;
}

.loader-container img {
    width: 15rem;
}

.loader-container.fade-out{
    top:110%;
    opacity: 0;

}



/* ----add cakes------ */


#add {

    margin-top: 17rem;
    z-index: 9999999;
    text-align: center;
}

.add h1 {
    color: #510d0d;
    font-size: 4rem;
    text-align: center;
    
}

#add form {
    background-color: #e1aaaa63;
    width: 100%;
    height: auto;
    padding: 5em;
    margin: 3em 0;
    border-radius: 5px;
}

#add form .create-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#add form .create-wrap p {

    font-size: 1.5rem;
    color: #666666;
}

.add .info {
    text-align: left;
    margin-bottom: 1.5em;
}

.info span {
    font-size: 2rem;
    color: #6d6d6d;
}

.info input {
    width: 100%;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 10px;
}

.info input, input::placeholder {
    font-size: 1.8rem;
    color: #666;

}

.info textarea {

    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
    margin-top: 1em;

}


input.info-btn{
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 1em;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

input.info-btn:hover{
    background-color: #510d0d;
}



/* sub-products page */


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

header .header {

    width: 100%;
    margin: 0 auto;
    background-color: maroon;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5em;

}

header .header .logo {

    width: 70px;
    height: 70px;


}

.header .logo img {

    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    background-position: 100%;

}

.header nav {

    text-align: center;
}

.header nav a {

    text-decoration: none;
    color: #fff;
    margin: 0 1em;
    font-size: 1.5rem;
    font-weight: bold;
}

.header nav a:hover {

    border-bottom: 2px solid #fff;
    margin-top: 1em;
}

.subProductContainer {

    max-width: 1440px;
    margin: 0 auto;
    padding-top: 12em;

}

.subProductContainer .sproduct {

    margin: 5em;
}

.subProductContainer .sproduct .row{

    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;


}

.row .sproductImg {
    /* flex-basis: 50%; */
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}


/* .subProductContainer .sproduct .row .sproductText{

    flex-basis: 50%;

} */


.image-fluid {

    background-color: #8080803b;

}


.row .sproductImg img {

   object-fit: cover;
   background-position: center;

}



.row .sproductImg .small-img-group {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6em;
    width: 100%;
    flex-wrap: wrap;


}

.row .sproductImg .small-img-group .small-img-col {

    background-color:#8080803b;

}


.row .sproductImg .small-img-group .small-img-col {

    flex-basis: 24%;
    width: 100%;

    height: 10em;
    padding: 0.3em;
    cursor: pointer;
    border-radius: 5px;



}

.row .sproductImg .small-img-group .small-img-col img {

    width: 100%!important;
    height: 100%!important;

}


.sproductText a {

    text-decoration: none; 
    color: gray;
    font-size: 1.5rem; 
    margin-top: 2em;
}

.sproductText .sp-heading {

    text-align: center;
    color: maroon;
    font-size: 3rem;
    font-weight: bold;
}


.sproductText .cake-layer {

    display: flex;
    align-items: center;

}

.sproductText .cake-layer h3{

    width: 200px;
    color: gray;
    font-size: 1.8rem;
    margin-top: 1.5em;

}

.sproductText .cake-layer .layers {

    font-size: 16px;
    /* background: #f8f8f8; */
    display: flex;
    align-items: flex-end;
    gap: 2em;
    justify-content: center;

}

.sproductText .cake-layer .layers .layer {

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .4em;
    border-radius: .3em;
    cursor: pointer;
    

}

.sproductText .cake-layer .layers .layer:hover {

    background: maroon;
}

.sproductText form .cake-layer .layers input:checked + .layer {

   background: maroon;

}


.sproductText .cake-layer .layers .layer .first {

    background: #fff;
    width: 1.2em;
    height: 0.55em;
    border: 0.06em solid #000;
    border-radius: .2em .2em 0 0;
    border-bottom: none;

}

.sproductText .cake-layer .layers .layer .second {

    background: #fff;
    width: 1.6em;
    height: 0.55em;
    border: 0.06em solid #000;
    border-radius: .2em .2em 0 0;
    border-bottom: none;

}

.sproductText .cake-layer .layers .layer .third {

    background: #fff;
    width: 2em;
    height: 0.55em;
    border: 0.06em solid #000;
    border-radius: .2em .2em 0 0;
    border-bottom: none;

}

.sproductText .cake-layer .layers .layer .four {

    background: #fff;
    width: 2.4em;
    height: 0.55em;
    border: 0.06em solid #000;
    border-radius: .2em .2em 0 0;
    border-bottom: none;

}

.sproductText .cake-layer .layers .layer .base {

      background: #fff;
      width: 3em;
      height: 0.55em;
      border: 0.06em solid #000;
      border-radius: .2em .2em 0 0;

}

.sproductText .cake-layer .layers .layer:checked + span {

    background: #fff;
   
}


.sproductText .cake-price {

    display: flex;
    align-items: center;
    margin-top: 3em;

}

.sproductText .cake-price h3 {

    width: 200px;
    color: gray;
    font-size: 1.8rem;
}

.sproductText .cake-price h1 {

    color: gray;
    cursor: pointer;
}

.sproductText .cake-price input:checked + h1 {

    color: maroon;
    font-weight: 600;

}

.sproductText .weight {

    display: flex;
    align-items: center;
    margin-top: 2em;

}

.sproductText .weight .weight-wrap{

    display: flex;


}


.sproductText .weight h3 {

    width: 184px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .weight span {

    color: grey;
}

.sproductText .weight input:checked + span {

    color: maroon;
    font-weight: 600;

}

.sproductText .weight input {

    display: none;

}

.sproductText .weight span {

    padding: 0em 1.2em;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;

}

.sproductText .cake-design {

    display: flex;
    align-items: center;
    
}

.sproductText .cake-design h3 {

    width: 200px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .cake-design input[type=text] {

    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: gray;

}


.sproductText .delivery-date {

    display: flex;
    align-items: center;
    margin-top: 1em;

}

.sproductText .delivery-date h3 {

    width: 200px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .delivery-date input {

    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    color: gray;
    background: #fff;

}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    color:rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    width: 20px;
    height: 20px;
    background: url(https://mywildalberta.ca/images/GFX-MWA-Parks-Reservations.png) no-repeat;
    border-width: thin;
    cursor: pointer;
}

.sproductText .delivery-date input[type="datetime-local"]::-webkit-calendar-picker-indicator {

    color: #fff;

} 



.sproductText .cake-flavor {

    display: flex;
    align-items: center;

}

.sproductText .cake-flavor h3 {

    width: 200px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .cake-flavor .selector {

    width: 370px;
    margin-top: 2em;
}

.sproductText .cake-flavor .selector #selectField{

    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-sizing: border-box;
    background: maroon;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;


}

.sproductText .cake-flavor .selector #selectField img{

    width: 16px;
    transition: transform 0.5s;


}

.sproductText .cake-flavor .selector .hide {

    display: none;

}

/* .sproductText .cake-flavor .selector .hide {

    visibility: hidden;

} */

.sproductText .cake-flavor .selector #list {

    width: 100%;
    background: #ccc;
    color: maroon;
    border-radius: 6px;
    overflow: hidden;

}

.sproductText .cake-flavor .select #list .option {

    width: 100%;
    padding: 15px 0 15px 30px;
    list-style: none;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;

}


.sproductText .cake-flavor .selector #list .option:hover {

    background: rgba(255, 255, 255,0.7);

}

.rotate {

    transform: rotate(180deg);

}



 .sproductText .cake-flavor .select {
    display: flex;
    justify-content: center;
    position: relative;
    width: 50%;
    text-align: center;
}

.sproductText .cake-flavor .select .select-box {

    border: none;
    appearance: none;
    padding: 0 30px 0 15px;
    width: 100%;
    color: white;
    background-color: maroon;
    font-size: 20px;
    border-radius: 5px;
    text-align: center;
    padding: 1em;

}

.sproductText .cake-flavor .select .icon-container {

    width: 50px;
    height: 100%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#c4c4c4;
    border-radius: 5px;


}

.sproductText .cake-flavor .select .icon-container i {

    font-size: 30px;
    color: maroon;
    background: #fff;

}


.sproductText .color-select {

    display: flex;
    align-items: center;
    margin-top: 2em;
}

.color-select h3 {

    width: 200px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .color-select .color-wrap{

    display: flex;
    margin-left: 4em;

}

.color-select label span {

    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
}

.color-select label .color-1 {

    background: red;

}

.color-select label .color-2 {

    background: blue;

}
.color-select label .color-3 {

    background: green;

}
.color-select label .color-4 {

    background:pink;

}
.color-select label .color-5 {

    background: brown;

}

.color-select label .color-6 {

    background: orange;

}

.color-select label .color-7 {

    background: yellow;

}


.color-select label .color-8 {

    background: firebrick;

}




.color-select label input {

    display: none;
}

.color-select label input:checked + span {

    transform: scale(0.7);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #000;

}

.sproductText .cake-description {

    display: flex;
    align-items: center;

}

.sproductText .cake-description #description {

    border: 1px solid grey;
    width: 50%;
    height: 15em;
    border-radius: 10px;
    padding: 1em;
    color: gray;
    font-weight: bold;
    margin: 0 0 2em -7em;
}

.sproductText .cake-description h3 {

    width: 300px;
    color: gray;
    font-size: 1.8rem;

}

.sproductText .cake-description p {


    max-width: 50%;
    margin-left: -6em;
}

.sproductText .tn-sp {

    margin: 3em 0;
    text-align: center;

}


.sproductText .spBtn .button-sp {
  appearance: button;
  backface-visibility: hidden;
  background-color: maroon;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  /* margin: 12px 0 0; */
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all .2s,box-shadow .08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 10em;
  text-align: center;
}

.sproductText .spBtn .button-sp {
  cursor: pointer   ;
}

header .cart-counts {
    background-color: #510d0d;
    position: absolute;
    width: 25px;
    height: 25px;
    text-align: center;
    top: 1.5em;
    right: 7.5%;
    border-radius: 50%;
}

header .cart-counts p {

    color: #fff;
    font-size: 1.7rem;
    text-align: center;

}


@media(max-width:800px) {

    .subProductContainer .sproduct .row{

        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 auto;
    
    
    }

    .row .sproductImg .main-img {

        width: 28em;
        height: 21em;
        background: #8080804f;
        padding: 0.5em;
        border-radius: 10px;

    
    }

    .row .sproductImg .main-img img {
    
        width: 100%!important;
        height: 100%!important;
    }

    .row .sproductImg .small-img-group {

        width: 100%;
    }

    .row .sproductImg .small-img-group .small-img-col {

        height: 7em;
    
    }

    .sproductText a {

        text-align: center;
    }

    .sproductText .sp-heading {

        margin-top: 1em;
    }

    .sproductText .cake-layer {

        flex-wrap: wrap;
        flex-direction: column;
        align-content: center;
        justify-content: center;
    
    }

    .sproductText .cake-layer h3{

        width: auto;
        text-align: center;
        margin-bottom: 2em;
    
    }

    .sproductText .cake-layer .layers {

        gap:1em;
        font-size: 12px;


    }

    .sproductText form .cake-layer .layers input {

        display:none;
    }


    .sproductText .cake-price {

        flex-direction: column;
        align-content: center;
        justify-content: center;
    }

    .sproductText .cake-price h3 {
       
        width: auto;
        text-align: center;
        margin-bottom: 1em;
    }

    .sproductText .weight {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .sproductText .weight h3 {
        width: auto;
        text-align: center;
        margin-bottom: 2em;
    }

    .sproductText .weight .weight-wrap{

        display: flex;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;

    }

    .sproductText .weight span {
        
        margin-right: 0;
        padding: 0em 1.2em;
        
    }

    .sproductText .cake-design {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .sproductText .cake-design h3 {

        width: auto;
        text-align: center;
        margin-top: 1em;
    }

    .sproductText .cake-design input[type=text] {
        width: 70%;
    }

    .sproductText .cake-description textarea {
        margin: 2em auto;
    }


    .sproductText .delivery-date {
       
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }



    .sproductText .delivery-date h3 {
        
            width: auto;
            text-align: center;
    }

    .sproductText .delivery-date input {

        width: 70%;
        
    }

    
    .sproductText .cake-flavor .select .select-box {
       

        font-size: 15px;
        
    }


    .sproductText .cake-flavor {
       flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .sproductText .cake-flavor h3 {
        width: auto;
        text-align: center;
        margin: 1em 0;
    }

    .sproductText .color-select {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .color-select h3 {
        width: auto;
        text-align: center;
        margin: 1em 0;
    }

    .sproductText .cake-description {
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .sproductText .cake-description h3 {
        width: auto;
        text-align: center;
        margin: 1em 0;
    }

    .sproductText .cake-description #description {

        border: 1px solid grey;
        width: 50%;
        height: 15em;
        border-radius: 10px;
        padding: 1em;
        color: gray;
        font-weight: bold;
        margin: 0.5em auto;
    }


    .sproductText .color-select .color-wrap{

        margin-left: 0;
    
    }

    .review .slide p{
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 2em;
    }


    .home .home-slider .slide {
    
        padding: 9em;
        object-fit: cover;
        background-position: center right;
        background-repeat: no-repeat;

    } 


}

@media (min-width: 750px) {

    .cakes nav li {
        
        margin: 6rem 0;
    }

    .row .sproductImg .small-img-group .small-img-col {
        height: 14em;
    }

    .row .sproductImg .main-img {

        width: 68em;
        height: auto;
        padding: 0.5em;
        border-radius: 10px;
    }
    
    .row .sproductImg .main-img img {
    
        width: 100%!important;
        height: 100%!important;
    }



    #review-container .review-wrap section .review-celebrate-text h1 {
        font-size: 8rem;
        margin-top: -1em;
    }


    #review-container .review-wrap section .review-celebrate-text {
        margin: 5rem auto;
    }

    #review-container .review-wrap section .review-celebrate-text .review-img {

        width: 400px;
        height: 400px;
        margin: 3em auto;
    }

}



/* media queries */

@media (max-width:991px) {

    html{
        font-size: 55%;

    }

    header {
        padding: 1rem 2rem;
    }

    section {
        padding: 5rem;
    }
}

@media (max-width:800px) {
    header .icons #menu-bars {
        display: inline-block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 5%;
        right: 5%;
        padding: 1rem 2rem 1rem 1rem;
        background: #fff;
        border-top: .1rem solid rgba(0,0,0,.2);
        border-bottom: .1rem solid rgba(0,0,0,.2);
        clip-path: polygon(0 0, 100% 0, 0 0);
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar #active1 {

        background: var(--sec-color);
        color: #fff;
        
    }


    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: #eee;
        width: 100%;
        text-align: center;
    }

    header .icons #active1 {

        display: none;
    }

    #search-form #search-box {
        width: 90%;
        margin: 0 1rem;
        padding: 1em;
    }

    .home .home-slider .slide .content h3 {
        font-size: 5rem;
    }
}

@media (max-width:450px) {

    html{
        font-size: 50%;

    }

    .cakes .box-container .box img {
        height: auto;
        width: 100%;
    }


}


body section #content {

    width: 100%;
    margin: 4em auto;
    border: 3px solid#ccc;
    border-radius: 5px;
    padding: 3em 0;
}


body #content form {

    width: 50%;
    margin: 20px auto;

}

body section #content input {

    font-size: 2rem;
    margin: 2em auto;
    text-align: center;

}

body #content form #upload {

    margin: 0 auto;

}



body #content form div {

    margin-top: 5px;

}

body #content form #img_div {

    width: 80%;
    padding: 5px;
    margin: 15px auto;
    border: 1px solid #cbcbcb;


}

body #content form #img_div::after{

    content: "";
    display: block;
    clear: both;

}

.info input[type="file"]{

    display: none;

}

.info label.imgFile{

    color: #fff;
    background: #510d0d;
    padding: 2em;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    border-radius: 10px;
    cursor: pointer;

   

}

.info label.imgFile:hover{

    background: #6d6d6d;
    color: #000;

}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

.info #upload-imgs {

    color: #fff;
    background: #510d0d;
    padding: 1em;
    text-align: center;
    margin: 1em auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    border-radius: 10px;
    cursor: pointer;

}

.info #upload-imgs:hover{

    background: #6d6d6d;
    color: #fff;
    
}

#add form .fetch-box {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width:90em;
    margin: 5em auto;

}

#add form .fetch-img {

    width: 200px;
    height: 200px;
    margin: 2em;

}

#add form .fetch-img img {

    width: 100%!important;
    height: 100%!important;
    border-radius: 20px;

}

#add form .fetch-img .fa-trash {

    position: relative;
    top: -207px;
    background: #eee;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--pri-color);
}

#add form .fetch-img .fa-trash {

    left: 7rem;

}

#add form .fetch-img a:hover {

    background: var(--sec-color);
    color: #fff;

}



#add form .info select{

    display: block;
    padding: 5px 10px;
    
}

#add form .custom-select input {

    width:200px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;

}

#add form .custom-select input:focus {

    outline: none;


}

section form #create-btn:hover{

    background: #510d0d;
    color: #fff;

}

/*------cart details-------*/

    .cart-container {

        max-width: 120em;
        margin: 20em auto 5em auto;

    }

    .cart-container .cart-heading h1{
        text-align: center;
        font-size: 3.5rem;
        color: #510d0d;
        margin: 1em 0;
    }

    .cart-container .cart-img-wrap {

        width: 100px;
        height: 100px;
        border: 1px solid #D2D2D2;
        border-radius: 0.5em;

    }

    .cart-container .cart-img-wrap img {

        width: 100%;
        height: 100%;
        padding: 1em;
        
    }

    .cart-container .cart-content-wrap {

        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-evenly;
        align-items: center;
        background: #fff;
        margin: 2em auto;
        padding: 0.6em;
        border-radius: 1em;
        max-width: 56em;

    }

    .cart-content-wrap .cart-cake-text h2 {

        color:#2C2C2C;
        font-size: 1.7rem;
        font-weight: normal;
        margin-left: 0.4em;
    }

    .cart-content-wrap .cart-cake-text p {

        color:#7A7A7A;
        margin: 1em 0 1em 0.5em;
        font-size: 1rem;
    }

    .cart-content-wrap .cart-text-wrap {

        width: 50%;
    }

    .cart-content-wrap .cart-text-wrap .delete-price-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        align-content: center;
    }

    .cart-content-wrap .cart-text-wrap .delete-price-wrap i {

        font-size: 2rem;
        margin-left: 0.5em;
    
    }

    .cart-content-wrap .cart-text-wrap .delete-price-wrap p {

        font-size: 1.5rem;
        font-weight: bold;
    }

    form .spBtn .view-cart-btn {

        background: #510d0c;
        color: #fff;
        padding: 0.9em 1.5em;
        font-size: 1.5rem;
        border-radius: 5px;
        text-align: center;
        margin: 0 1em;
        cursor: pointer;

    }

    form .spBtn .view-cart-btn:hover {

        background: #fff;
        color: #510d0d;
    }


    /* --TOTAL CALCULATIONS--- */

    section #cart-total .cart-total-wrap {

        margin: 4em 0; 

    }

    section #cart-total .cart-total-wrap h2 {

        background: #510d0d;
        color: #fff;
        text-align: center;
        padding: 1em;
       
    }

    section #cart-total .cart-total-wrap .flex-cart-price {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-top: 2em;

    }


    section #cart-total .cart-total-wrap .flex-cart-price h3 {

        color: #510d0d;
        font-size: 2rem;
        margin-right: 2em;
    }

    section #cart-total .cart-total-wrap .total-price p {

        font-size: 2rem;
        color: #510d0d;
        font-weight: bold;
        margin: 1em 0;
        


    }

   

    section #cart-total .cart-total-wrap .checkout-link  {

        margin: 0 auto;
        text-align: center;
        padding: 4em;


    }

    section #cart-total .cart-total-wrap .checkout-link .check-btn {

       background: #510d0d;
       color: #fff;
       padding: 1em;
       font-weight: bold;
       cursor: pointer;
       margin: 3em 0;
       font-size: 1.3rem;
       border-radius: 0.3em;

    }

    section #cart-total .cart-total-wrap .checkout-link .check-btn:hover {

        background: #fff;
        color: #510d0d;
    }
   

/*------cart details-------*/




@media (max-width:770px) {

    header {
        
        
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
       
    }

    header .icons #log {


        display: none;
    }

    .cakes nav {
        
        flex-wrap: wrap;
        padding-top: 2rem;
    }

    section form input.padd-btn {

        padding: 1em;

    }

    .cart-container .cart-content-wrap {

        flex-wrap: nowrap;
        padding: 1em;
    }

    .sproductText .weight span {

        
        font-size: 1rem;
        
    
    }

    header .icons i, header .icons a {

        height: 3rem;
        line-height: 3rem;
        width: 3rem;
        font-size: 1.5rem;

    }
     

}

@media (max-width:720px) {

    header .cart-counts {
        background-color: #510d0d;
        position: absolute;
        width: 20px;
        height: 20px;
        text-align: center;
        top: 2.5em;
        right: 11.5%;
        border-radius: 50%;
    }

  

}

/* @media (min-width:765px) {

    header .cart-aount {
        width: 10px;
        height: 10px;
        top: 3rem;
        right: 7.5%;
    }

    header .cart-aount p {

        font-size: 1rem;
    }

} */


/* @media (min-width:770px) {

    header .cart-aount {

        width: 25px;
        height: 25px;
        top: 1.5rem;
        right: 7.5%;
    }
    
    header .cart-aount p {

        font-size: 1.7rem;
    }

} */


/* @media (max-width:1100px) {

    header .navbar a {

        font-size: 1.3rem;
        padding: 0.3rem 0.7rem;

    }

    header .icons i, header .icons a {
        cursor: pointer;
        margin-left: 0.5rem;
        height: 3rem;
        line-height: 3rem;
        width: 3rem;
        text-align: center;
        font-size: 1.7rem;
        color: var(--pri-color);
        border-radius: 50%;
        background: #eee;
    }



} */




@media (max-width:350px) {

    header .icons i,
    header .icons a {
        
        height: 2.5rem;
        line-height: 2.5rem;
        width: 2.5rem;
        
    }

}


@media (min-width:800px) {


    header .navbar .logopt {


        display: none;
    }

    header .navbar .logout {


        display: none;

    }
    header .icons #active1 {

        background: var(--sec-color);
        color: #fff;
        
    }

    header .navbar a.active,
    header .navbar a:hover {
        color: #fff;
        background:var(--sec-color);
    }

    .sproductText .cake-flavor .select {

        margin: 2em 0;
    }

    .review .slide{

        padding: 2rem;
        
    }


    .review .slide p{
        font-size: 1.3rem;
        line-height: 1.4;
        color: var(--light-color);
    }


}

@media (max-width:1050px)  {

    header .navbar a {
        font-size: 1.2rem;
    
    }

    header .icons i, header .icons a {
        
        height: 2.5rem;
        line-height: 2.5rem;
        width: 2.5rem;
        text-align: center;
        font-size: 1.7rem;
    
    }



}


/* -----invoice designing work started------- */

section .invoice-container {

    max-width: 1000px;
    margin: 0 auto;

}

section .invoice-container .invoice-main-content {

    margin-top: 15rem;


}

section .invoice-container .invoice-main-content h1 {

    font-size: 5rem;
    color:#510d0d;
    text-align: center;

}

section .invoice-container .invoice-main-content .owner-details {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 5em;

}

section .invoice-container .invoice-main-content .owner-details h2 {

    font-size: 2rem;
    color: #510d0d;

}

section .invoice-container .invoice-main-content .owner-details p {

    font-size: 2rem;
    color: #6d6d6d;

}

.invoice-main-content .owner-details .invoice-logo {

    width: 130px;
    height: 130px;

}


.invoice-main-content .client-details {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.invoice-main-content .client-address h2 {

    font-size: 2rem;
    color: #510d0d;

}
.invoice-main-content .client-address p {

    font-size: 2rem;
    color: #6d6d6d;
}

.invoice-main-content .invoice-number {

    margin-top: 2em;
}

.invoice-main-content .invoice-number h2 {

    font-size: 2rem;
    color: #510d0d;

}

.invoice-main-content .invoice-number p {

    font-size: 2rem;
    color: #6d6d6d;

}


.invoice-main-content .owner-details .invoice-logo img {

    width: 100%!important;
    height: 100%!important;
}

.invoice-container .invoice-table {

    margin-top: 5em;

}

.invoice-container .invoice-table table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  table th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    color:#510d0d;
    font-size: 2rem;
  }

  table td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    color: #2C2C2C;
    font-size: 2rem;
  }
  
  table  tr:nth-child(even) {
    background-color: #dddddd;
  }

  .total-details table {

    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;

  }

  .total-details table td {

    text-align: center;

  }

  .invoice-container .payment h2 {

    color: #510d0d;
    margin: 2em 0.5em 0 0;

  } 

  .invoice-container .payment p {

    color: #2C2C2C;
    font-weight: bold;
    font-size: 1.2rem;

  }

  .invoice-container .terms-conditions .terms-text h2{

    color: #510d0d;
    text-transform: capitalize;
    

  }

  .invoice-container .terms-conditions .terms-text P{

    color: #2C2C2C;
    font-weight: bold;
    font-size: 1.3rem;

  }

  .invoice-container .terms-conditions {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 2em;

  }

  .invoice-container .terms-conditions .signature h2 {

    font-size: 1.5rem;
    color: #510d0d;

  }

  .invoice-container .terms-conditions .signature p {

    color: #2C2C2C;
    font-weight: bold;
    font-size: 1.3rem;

  }

  .client-address textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
    margin-top: 1em;
  }

/* -----invoice designing work end------- */

/* -------cart-product-reviewpage started---- */

.cart-review-container {

    max-width: 1440px;
    margin: 20em auto;
    background: #eeeeee;

}

.cart-review-container .cart-review-prddetails {
    padding:4em; 
    margin: 0 auto;
    
}

.cart-review-container .cart-review-prddetails h1 {

    text-align: center;
    color: #510d0c;
    font-size: 3rem;
    margin-bottom: 1em;
   
}

.cart-review-container .cart-review-prddetails .cart-rev-wrap {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 50%;
    margin: 0 auto;
    padding: 3em;
    border-radius: 5px;
}

.cart-review-prddetails .cart-rev-wrap .cart-revimg {

    width: 200px;
    height: 200px;
}

.cart-review-prddetails .cart-rev-wrap .cart-revimg img {

    width: 100%!important;
    height: 100%!important;

}

.cart-review-prddetails .cart-rev-wrap .cart-rev-textwrap {

    margin-left: 2em;
}

.cart-review-prddetails .cart-rev-wrap .cart-rev-textwrap p {

    font-size: 2rem;
    color: gray;
    margin-bottom: 0.5em;

}

.cart-review-prddetails .cart-rev-wrap .cart-rev-textwrap p span {

    color: #510d0c;
}

.cart-review-prddetails .cart-rev-wrap .cart-rev-textwrap h2 {

    font-size: 1.3rem;
    color: rgb(80, 75, 75);
    margin-bottom: 0.5em;
}

 .cart-rev-wrap .cart-rev-textwrap .orderid-wrap {

    display: flex;
    margin-top: 1em;
 }

 .cart-review-prddetails .customer-details {

    background: #fff;
    margin: 0 auto;
    width: 50%;
    border-top: 2px solid rgb(128, 128, 128,0.3);
    padding: 2em;
 }

 .cart-review-prddetails .customer-details .customer-detail-wrap {

    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;

 }

 .cart-review-prddetails .customer-details .customer-detail-wrap h3 {

    font-size: 2.2rem;
    color: #510d0c;
 }

 .cart-review-prddetails .customer-details .customer-detail-wrap .customer-detail-text h2 {

    color: #510d0c;
 }

 .cart-review-prddetails .customer-details .customer-detail-wrap .customer-detail-text p{

    color: gray;
    font-size: 1.5rem;
 }

 .cart-review-container .cart-review-prddetails .c-btn {

    border-radius: 5px;
    text-align: center;
    width: 50%;
    background: #510d0c;
    margin: 2em auto;
    padding: 2em;



}

.cart-review-container .cart-review-prddetails .c-btn  a {

    text-decoration: none;
    color: #fff;    
    padding: 1em;
    margin-bottom: 2em;
    font-size: 2rem;
    font-weight: bold;
}

.cart-review-prddetails .cart-review-total  .cartr-total-wrap {

    border-top: 2px solid rgb(128, 128, 128,0.5);
    width: 50%;
    margin: 0 auto;
    background: #fff;
    padding: 4em;
}

.cart-review-prddetails .cart-review-total .cartr-total-wrap .totalp {

    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    width: 50%;
    margin: 0 auto;

}

.cart-review-prddetails .cart-review-total .cartr-total-wrap .totalp h2 {

    font-size: 2rem;
    color: #510d0c;
    margin-bottom: 2em;
}

.cart-review-prddetails .cart-review-total .cartr-total-wrap .totalp p {

    font-size: 2rem;
    color: #413e3e;
    margin-bottom: 2em;
}


/* .radio-section {
	display: flex;
	align-items: center;
	justify-content: center;
    color: #510d0c;
}
.radio-section .radio-list h1 {
	margin-bottom: 20px;
}
.radio-item [type="radio"] {
	display: none;
}
.radio-item + .radio-item {
	margin-top: 15px;
}
.radio-item label {
	display: block;
	padding: 20px 60px;
	border: 2px solid #510d0c;
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	min-width: 250px;
	white-space: nowrap;
	position: relative;
	transition: 0.4s ease-in-out 0s;
}
.radio-item label:after,
.radio-item label:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.radio-item label:after {
	height: 19px;
	width: 19px;
	border: 2px solid #510d0c;
	left: 19px;
	top: calc(50% - 12px);
}
.radio-item label:before {
	background: #510d0c;
	height: 20px;
	width: 20px;
	left: 21px;
	top: calc(50%-5px);
	transform: scale(5);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out 0s;
}
.radio-item [type="radio"]:checked ~ label {
	border-color:#510d0c;
}
.radio-item [type="radio"]:checked ~ label::before {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
} */


.cart-review-prddetails #field-wrap{
    
    margin: 0;
    display: grid;
    place-items: center;
    font-family: "Inter", sans-serif;
    user-select: none;
}


.cart-review-prddetails fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  max-width: 450px;
  border-radius: 20px;
  width: 100%;
}

legend {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  background: #510d0c;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
  border: 2px solid #510d0c;
  display: flex;
}

fieldset label {
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex: 1;
  box-sizing: border-box;
  display: flex;
  padding: 20px 20px 20px 50px;
  font-weight: bold;
  color: #510d0c;
  -webkit-tap-highlight-color: transparent;
}

fieldset input[type="radio"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  transition: linear 0.8s;
  height: 0;
  width: 0;
  -webkit-tap-highlight-color: transparent;
}

fieldset input[type="radio"]:after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  top: -10.5px;
  left: -30px;
  border-radius: 20px;
  border: 2px solid #510d0c;
  transition: linear 0.2s;
  cursor: pointer;
}

fieldset input[type="radio"]:checked:after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  background: #510d0c;
  transition: linear 0.2s;
  cursor: pointer;
}

fieldset input[type="radio"]:checked:before {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: #fff;
  left: -24px;
  top: -4.5px;
  z-index: 1;
  cursor: pointer;
}

.radio-item-container {
  display: flex;
  flex-direction: column;
  border: 2px solid #510d0c;
  border-top: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
 



/* -------cart-product-reviewpage end---- */

/* ----media query for small screen */

@media (max-width:750px) {

    .container .home-slider  .content {

        position: relative;
        top: -9em;
        left: 13%;
       
    }

    .container .home-slider  .content .slider-btn{

       font-size: 0.7rem;
       padding: 0.5rem 1rem;
       
    }

}


@media (min-width:750px) {

    .container .home-slider  .content {

        position: relative;
        top: -23em;
        left: 14%;
       
    }

    .container .home-slider  .content .slider-btn{

       font-size: 1.7rem;
       
    }

}


@media (min-width:750px) and (max-width:780px) {

    .container .home-slider  .content {

        position: relative;
        top: -15em;
        left: 13%;
       
    }

    .container .home-slider  .content .slider-btn{

       font-size: 1.3rem;
       
    }

}

@media (min-width:950px) and (max-width:1120px) {

    .container .home-slider  .content {

        position: relative;
        top: -17em;
        left: 13%;
       
    }

    .container .home-slider  .content .slider-btn{

       font-size: 1.3rem;
       
    }

}


@media (max-width:800px) {
    
 
    section .invoice-container .invoice-main-content h1 {
        font-size: 3rem;
    }

    section .invoice-container .invoice-main-content .owner-details h2 {
        font-size: 1.5rem;
    }

    section .invoice-container .invoice-main-content .owner-details p {
        font-size: 1.5rem;
    }

    .invoice-main-content .owner-details .invoice-logo {
        width: 70px;
        height: 70px;
    }


    .invoice-main-content .client-address h2 {
        font-size: 1.5rem;
    }

    .invoice-main-content .invoice-number h2 {
        font-size: 1.5rem;
    }

    .invoice-main-content .invoice-number p {
        font-size: 1.5rem;
    }

    table th {
        font-size: 0.8rem;
    }

    table td {
        font-size: 1.2rem;
    }

    .cart-review-prddetails .cart-rev-wrap .cart-revimg {

        width: 100px;
        height: 100px;
    }

    .cart-review-container .cart-review-prddetails .cart-rev-wrap {
       
        width: 100%;
     
    }

    .cart-review-prddetails .customer-details {

        width: 100%;
    
    }
    .cart-review-prddetails .customer-details .customer-detail-wrap {
       
        justify-content: space-between;
    }
    .cart-review-prddetails .customer-details .customer-detail-wrap h3 {
        font-size: 1.5rem;
    }

    .cart-review-container .continue-btn .c-btn {

        width: 100%;
    
    }
    


}

@media (min-width:850px) {

     .cart-review-container .cart-review-prddetails #field-wrap {

        width: 50%;

   }


}



@media (min-width:730px) {

    .cakes .box-container .box img {
        width: 200px;
        height: 200px;
        background-position: center;
    }


}

#hovertext {
    display: none;
    background-color: #510d0d;
    color: #fff;
    padding: 20px;
  }
  
 /* ----------cakedetailform started------------ */

        .subProductContainer .customer-form-wrap {

            background: #eeeeee;
            max-width: 900px;
            margin: 0 auto;
            padding: 2em;

        }

        .subProductContainer .customer-form-wrap .form-heading {

            border-bottom: 1px solid #510d0c;

        }

        .subProductContainer .customer-form-wrap .form-heading h2 {

                color: #510d0c;
                font-size: 3.5rem;
                text-align: center;
                margin-bottom: 0.5em;

        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap {

            display: flex;
            justify-content:space-around;
            align-items: center;
            flex-direction: row;
            margin-top: 3em;

        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-text p{

            font-size: 2rem;
            color: #252525;

        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons {

            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .minus {

            background: #b49c57;
            color: #fff;
            width: 50px;
            height: 50px;
            text-align: center;
            border-radius: 50%;
            margin-right: 2em;
            cursor: pointer;
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .minus button {

            text-decoration: none;
            list-style: none;
            font-size: 3rem;
            text-align: center;
            background: none;
            color:#fff;
            margin-top: 0.2em;
            cursor: pointer;
            
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .cake-icon {

            width: 50px;
            height: 50px;
            
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .cake-icon img {

            width: 100%!important;
            height: 100%!important;
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .plus {

            background: #b49c57;
            color: #fff;
            width: 50px;
            height: 50px;
            text-align: center;
            border-radius: 50%;
            margin-left: 2em;
            cursor: pointer;

        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .plus button {

           text-decoration: none;
           list-style: none;
           font-size: 3rem;
           text-align: center;
           background: none;
           color:#fff;
           margin-top: 0.2em;
           cursor: pointer;
        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .weight-wrap {

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;

        }

        .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .weight-wrap .min-weight {

            font-size: 1.5rem;
            color: #252525;
            margin-top: 0.3em;
        }

        .subProductContainer .customer-form-wrap form .input-wrap {

            text-align: center;
            margin: 0 auto;

        }

        .subProductContainer .customer-form-wrap form .input-wrap h3 {

            font-size: 2rem;
            color: #252525;
            margin-top: 2em;
            font-weight: normal;
            text-align: left;
            margin-left: 6em;
            margin-bottom: 1em;
        }

        .subProductContainer .customer-form-wrap form .input-wrap input {

            width: 75%;
            border: 1px solid #252525;
            border-radius: 10px;
            background: #fff;
            padding: 2em;
            margin-left: 1em;
            
        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap {

            text-align: center;
            margin: 0 auto;
        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap h3 {

            font-size: 2rem;
            color: #252525;
            margin-top: 2em;
            font-weight: normal;
            text-align: left;
            margin-left: 6em;
            margin-bottom: 1em;
        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap input {

            width: 75%;
            border: 1px solid #252525;
            border-radius: 10px;
            background: #fff;
            padding: 2em;
            margin-left: 1em;

        }


        .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap input[type="datetime-local"]::-webkit-calendar-picker-indicator {
            color:#510d0c;
            opacity: 1;
            display: block;
            width: 20px;
            height: 20px;
            background: url(https://mywildalberta.ca/images/GFX-MWA-Parks-Reservations.png) no-repeat;
            border-width: thin;
            cursor: pointer;
        }  

         .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap input[type="datetime-local"]::-webkit-calendar-picker-indicator {

             color: #510d0c;

        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore h3 {

            font-size: 2rem;
            color: #252525;
            margin-top: 2em;
            font-weight: normal;
            text-align: left;
            margin-left: 6em;
            margin-bottom: 1em;
        }


        .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore select {

            width: 75%;
            border: 1px solid #252525;
            border-radius: 10px;
            background: #fff;
            padding: 2em;
            margin-left: 1em;
        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore .select #timelist {

            width: 75%;
            background: #fff;
            color: #000;
            border-radius: 6px;
            overflow: hidden;
            background: #510d0c;
            color: white;

        }

        .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore .select select#timelist option {

            width: 30%;
            padding: 15px 0 15px 30px;
            list-style: none;
            cursor: pointer;
            box-sizing: border-box;
            position: relative;
            background: #510d0c;
            color: white;
        }

        .subProductContainer .customer-form-wrap form .checkout-btn {

            background: #510d0c;
            color: #fff;
            width: 50%;
            text-align: center;
            margin: 3em auto;
            padding: 2em;
            border-radius: 10px;

        }

        .subProductContainer .customer-form-wrap form .checkout-btn .btn-ticon-wrap {

            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;

        }

        .subProductContainer .customer-form-wrap form .checkout-btn .btn-ticon-wrap .btn-text p {

            font-size: 2rem;
            text-align: center;
            font-weight: bold;
        }

        .subProductContainer .customer-form-wrap form .checkout-btn .btn-ticon-wrap .btn-arrow i {

            font-size: 2rem;
            font-weight: bold;
            margin-left: 0.5em;
        }

        .subProductContainer .customer-form-wrap form .input-wrap textarea {

            width: 75%;
            border: 1px solid #252525;
            border-radius: 10px;
            background: #fff;
            padding: 2em;
            margin-left: 1em;

        }

        .subProductContainer .customer-form-wrap form .cake-price-wrap #cakePrice {

            background: #fff;
            color: #666;
             width: 75%;
             margin: 2em auto;
             padding:2em;border-radius:
              10px;font-size: 1.3rem; 

        }





  /* ----------cakedetailform end------------ */

  /* media for customer detail form */

  @media (max-width:800px) {

    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-text p {
        font-size: 1.6rem;
        
    }

    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .plus {

        width: 30px;
        height: 30px;

    }

    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .plus button {

        font-size: 2rem;
    }

    .subProductContainer .customer-form-wrap form .input-wrap h3 {
        text-align: center;
        margin-left: 0em;
    }

    .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap h3 {
       
        text-align: center;
        margin-left: 0em;
    }


    .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore h3 {
        text-align: center;
        margin-left: 0em;
    }

    .subProductContainer .customer-form-wrap form .date-delivery-wrap .dbefore .select #timelist {

        width: 90%;
        text-align: center;
        padding: 1em;
    }



    .subProductContainer .customer-form-wrap form .date-delivery-wrap .date-wrap input {
        width: 90%;
        padding: 1.3em;
    }

    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .cake-icon {
        width: 30px;
        height: 30px;
    }


    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .minus {
        width: 30px;
        height: 30px;
        
    }

    .subProductContainer .customer-form-wrap .cake-layer-wrap .layer-icons .minus button {

        font-size: 2rem;
    }

    .subProductContainer .customer-form-wrap form .input-wrap input {
        width: 90%;
        padding: 1.3em;
    }

    .subProductContainer .customer-form-wrap form .checkout-btn {
        padding: 1em;
    }

    .subProductContainer .customer-form-wrap form .input-wrap textarea {

        width: 90%;

    }

    .subProductContainer .customer-form-wrap form .cake-price-wrap #cakePrice {

        width: 90%;
    }

    .cart-review-prddetails .cart-review-total  .cartr-total-wrap {

        width: 100%;
        
    }

    .cart-review-prddetails .cart-review-total .cartr-total-wrap .totalp h2 {
        font-size: 1.5rem;
        color: #510d0c;
        margin-bottom: 2em;
    }

    .cart-review-prddetails .cart-review-total .cartr-total-wrap .totalp p {
        font-size: 1.5rem;
        color: #413e3e;
        margin-bottom: 2em;
    }



 
   

}














