@font-face {
    font-family: "Quicksand";
    src: url("resources/font/Quicksand-Medium.ttf");
}

@font-face {
    font-family: "Honey";
    src: url("resources/font/HoneyScript-Light.ttf");
}

* {
    font-family: "Quicksand";
}

body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

.logo {
    background-image: url("resources/images/other/logo2.png");
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.box {
    border-radius: 8px;
    box-shadow: 0px 0px 6px 0.1px black;
}

.fplink {
    cursor: pointer;
}

.myshadow {
    box-shadow: 0px 0px 7px 2px rgb(208, 207, 207);
}

.spbody {
    overflow: scroll;
}

.alertmsg {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-decoration: none;
    vertical-align: middle;
    cursor: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition-duration: 5s;
}

.alertmsg-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alertmsg-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alertmsg-show {
    animation-name: showAlert;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes showAlert {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.pm {
    height: 65px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pm1 {
    background-image: url("resources/images/payment_method/visa_img.png");
}

.pm2 {
    background-image: url("resources/images/payment_method/mastercard_img.png");
}

.pm3 {
    background-image: url("resources/images/payment_method/american_express_img.png");
}

.pm4 {
    background-image: url("resources/images/payment_method/paypal_img.png");
}

.sidemenu {
    position: relative;
    margin: 0px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    width: 100%;
}

.listedProduct {
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.listedProduct:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
    box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #D10024;
}

.productMainImg1 {
    opacity: 0;
    animation-name: productMainImg1;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes productMainImg1 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.productMainImg2 {
    opacity: 0;
    animation-name: productMainImg2;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes productMainImg2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.productMainImg3 {
    opacity: 0;
    animation-name: productMainImg3;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes productMainImg3 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.descTab {
    opacity: 0;
    animation-name: descTab;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes descTab {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.revTab {
    opacity: 0;
    animation-name: revTab;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes revTab {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.passwordField {
    opacity: 0;
    animation-name: passwordField;
    animation-duration: 200ms;
    animation-fill-mode: forwards;
}

@keyframes passwordField {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.chatBtn:hover {
    background-color: #e7e7e8;
}

.messageSendBtnIcon1 {
    opacity: 0;
    animation-name: messageSendBtnIcon1;
    animation-duration: 2000ms;
    animation-fill-mode: forwards;
}

@keyframes messageSendBtnIcon1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.messageSendBtnIcon2 {
    opacity: 0;
    animation-name: messageSendBtnIcon2;
    animation-duration: 2000ms;
    animation-fill-mode: forwards;
}

@keyframes messageSendBtnIcon2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.adminSignInBtn {
    background-color: #74EBD5;
    background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 50%, #74EBD5 100%);
}

.adminWelcomeTitle {
    font-family: "Honey";
    font-size: 30px;
    letter-spacing: 3px;
}

.adminMessageSendBtnIcon1 {
    opacity: 0;
    animation-name: adminMessageSendBtnIcon1;
    animation-duration: 2000ms;
    animation-fill-mode: forwards;
}

@keyframes adminMessageSendBtnIcon1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.adminMessageSendBtnIcon2 {
    opacity: 0;
    animation-name: adminMessageSendBtnIcon2;
    animation-duration: 2000ms;
    animation-fill-mode: forwards;
}

@keyframes adminMessageSendBtnIcon2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}