/*Preloader*/
@-webkit-keyframes loader-two-before-transition {
    50% {
        left: -154px;
    }

    100% {
        left: -97px;
    }
}

@keyframes loader-two-before-transition {
    50% {
        left: -154px;
    }

    100% {
        left: -97px;
    }
}

@-webkit-keyframes loader-two-after-transition {
    50% {
        left: 54px;
    }

    100% {
        left: -4px;
    }
}

@keyframes loader-two-after-transition {
    50% {
        left: 54px;
    }

    100% {
        left: -4px;
    }
}

#cn-loader-two {
    height: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}

#cn-loader-two .cn-loader-two-inner {
    border: 2px solid #fff;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    text-align: center;
    top: 50%;
    left: 50%;
    position: absolute;
    margin-top: -50px;
    margin-left: -50px;
}

#cn-loader-two .cn-loader-two-inner:before {
    content: "";
    height: 57%;
    left: -204px;
    position: absolute;
    top: -5px;
    transition: all 0.5s ease 0s;
    width: 200px;
    -webkit-animation-name: loader-two-before-transition;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: loader-two-before-transition;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#cn-loader-two .cn-loader-two-inner:after {
    content: "";
    height: 57%;
    left: 104%;
    position: absolute;
    top: 50%;
    transition: all 0.5s ease 0s;
    width: 200px;
    -webkit-animation-name: loader-two-after-transition;
    -webkit-animation-duration: 1.5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-name: loader-two-after-transition;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#cn-loader-two .cn-loader-two-inner span {
    color: #fff;
    display: inline-block;
    margin-top: 45%;
}
/*
#cn-loader-two .cn-loader-two-inner {
    left: 45%;
}*/

#cn-loader-two .cn-loader-two-inner:before {
    background: #ff6666;
}

#cn-loader-two .cn-loader-two-inner:after {
    background: #ff6666;
}

#cn-loader-two {
    background-color: #ff6666;
}

#cover-load-page {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display:none;
}

@-webkit-keyframes cover-spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}

@keyframes cover-spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

#cover-load-page::after {
    content:'';
    display:block;
    position:absolute;
    left:48%;top:40%;
    width:40px;height:40px;
    border-style:solid;
    border-color:#ff6f6f;
    border-top-color:transparent;
    border-width: 4px;
    border-radius:50%;
    -webkit-animation: cover-spin .8s linear infinite;
    animation: cover-spin .8s linear infinite;
}

.login-card-area{
    background: #ff6f6f;  
    background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
    width: 100%;
    height: 35rem;
}
/* @media (min-width: 400px) and (max-width:767px) {
    .login-card-area{
        height:60vh !important;
    }
}
@media only screen and  (min-width:767px) {
    .login-card-area{
        height:90vh !important;
    }
} */
.login-card--square-circles{
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-card--square-circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 1rem;
    height: 1rem;
    background: rgba(255, 255, 255, 0.2);
    animation: login-card-animate 25s linear infinite;
    bottom: -150px;

}

.login-card--square-circles li:nth-child(1){
    left: 25%;
    width: 2.5rem;
    height: 2.5rem;
    animation-delay: 0s;
}


.login-card--square-circles li:nth-child(2){
    left: 10%;
    width: 1rem;
    height: 1rem;
    animation-delay: 2s;
    animation-duration: 12s;
}

.login-card--square-circles li:nth-child(3){
    left: 70%;
    width: 1rem;
    height: 1rem;
    animation-delay: 4s;
}

.login-card--square-circles li:nth-child(4){
    left: 40%;
    width: 3rem;
    height: 3rem;
    animation-delay: 0s;
    animation-duration: 18s;
}

.login-card--square-circles li:nth-child(5){
    left: 65%;
    width: 1rem;
    height: 1rem;
    animation-delay: 0s;
}

.login-card--square-circles li:nth-child(6){
    left: 75%;
    width: 3rem;
    height: 3rem;
    animation-delay: 3s;
}

.login-card--square-circles li:nth-child(7){
    left: 35%;
    width: 5rem;
    height: 5rem;
    animation-delay: 7s;
}

.login-card--square-circles li:nth-child(8){
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: 15s;
    animation-duration: 45s;
}

.login-card--square-circles li:nth-child(9){
    left: 20%;
    width: 1rem;
    height: 1rem;
    animation-delay: 2s;
    animation-duration: 35s;
}

.login-card--square-circles li:nth-child(10){
    left: 85%;
    width: 6rem;
    height: 6rem;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes login-card-animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



.login-card-animated-design,login-card-animated-design2 {
    overflow: hidden;
    background-color: white;
    padding: 15px 15px 15x 15px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    width: 26rem;
    left: 50%;
    transform:translate(-50%, -50%);
    transition:transform 300ms, box-shadow 300ms;
    box-shadow: 5px 10px 10px rgba(255, 132, 132,0.2);
}

.login-card-animated-design::before, .login-card-animated-design::after,.login-card-animated-design2::before,.login-card-animated-design2::after {
    content: '';
    position: absolute;
    width: 30rem;
    height: 30rem;
    border-top-left-radius: 40%;
    border-top-right-radius: 45%;
    border-bottom-left-radius: 35%;
    border-bottom-right-radius: 40%;
    z-index: -1;
}

.login-card-animated-design::before {
    left: 48%;
    bottom: -105%;
    background-color: rgb(255 8 8 / 15%);
    animation:login-card-animation 6s infinite linear;
}
.login-card-animated-design2::before {
    left: 20%;
    bottom: 92%;
    background-color: rgb(255 8 8 / 15%);
    animation:login-card-animation 6s infinite linear;
}

.login-card-animated-design::after {
    left: 50%;
    bottom: -108%;
    background-color:rgb(255 28 28 / 20%);
    animation:login-card-animation 7s infinite;
}
.login-card-animated-design2::after {
    left: 49%;
    bottom: 90%;
    background-color:rgb(255 28 28 / 20%);
    animation:login-card-animation2 7s infinite;
}
.login-card-animated-design .form-control{
    /* border-right: 0 !important; */
}
.login-card-animated-design .card-body .input-group-prepend select  {
    width: 7rem;
}

.login-card-animated-design:hover {
    /* background-color: rgb(45 42 40 / 11%); */
}
.login-card-animated-design:hover label,.login-card-animated-design:hover h6{
    /* color: #fbf8f8 !important; */
}


@keyframes login-card-animation {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(720deg);
    }
}
@keyframes login-card-animation2 {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(720deg);
    }
}


.checked {
    color: orange;
}

.add-to-cart-button {
    position: relative;
    /* outline: 0; */
    /* background-color: blue; */
    color: #fff;
    /* border: none; */
    height: 2rem;
    width: 9rem;
    /* padding: 10px; */
    /* border-radius: 10px; */
    /* line-height: 0px; */
    overflow: hidden;
}

.add-to-cart-button .fa-plus {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 18%;
    font-size: 1.1em;
    transform: translate(-50%, -50%)
}

.add-to-cart-button .fa-circle-thin {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: -50%;
    font-size: 1.5em;
    transform: translate(-50%, -50%)
}

.add-to-cart-button .fa-check {
    position: absolute;
    z-index: 1;
    top: -52%;
    left: 12%;
    font-size: 0.7em;
    transform: translate(-50%, -50%)
}

.add-to-cart-button span {
    position: absolute;
    left: 58%;
    top: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
    font-size: 1rem;
}

.add-to-cart-button span.added {
    opacity: 0
}

.add-to-cart-button.clicked .fa-plus {
    animation: addicon-add-to-cart 2s ease-in forwards
}

.add-to-cart-button.clicked {
    animation: color 2s ease-in forwards
}

.add-to-cart-button.clicked .fa-circle-thin {
    animation: add-to-cart-circle 1s ease-in forwards
}

.add-to-cart-button.clicked .fa-check {
    animation: check 2s ease-in forwards
}

.add-to-cart-button.clicked span.add-to-cart {
    animation: addcart 2s ease-in forwards
}

.add-to-cart-button.clicked span.added {
    animation: added 2s ease-in forwards
}

@keyframes addicon-add-to-cart {
    0% {
        opacity: 1
    }

    30%,
    100% {
        opacity: 0
    }
}

@keyframes add-to-cart-circle {
    0% {
        left: -10%
    }

    100% {
        left: 12%
    }
}

@keyframes check {

    0%,
    40% {
        top: -20%
    }

    60% {
        top: 48%
    }

    100% {
        top: 48%
    }
}

@keyframes addcart {

    0%,
    30% {
        opacity: 1
    }

    30%,
    100% {
        opacity: 0
    }
}

@keyframes added {

    0%,
    80% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes color {
    0% {
        background-color: blue
    }

    80%,
    100% {
        background-color: green
    }
}