﻿body {
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
}

ul, ol, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: #2b337c;
}

    ::-webkit-scrollbar-thumb:window-inactive {
        background: #2b337c;
    }

.loading {
    height: 100px;
    width: 100px;
    position: absolute;
    left: 43%;
    top: 50%;
    bottom: 0;
    right: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
}

    .loading .loader {
        border: 3px solid #f3f3f3;
        border-radius: 50%;
        border-top: 3px solid #ef6d70;
        width: 200px;
        height: 200px;
        -webkit-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        margin-top: -26px;
        margin-left: -30px;
        position: absolute;
    }

    .loading img {
        height: 100px;
        width: auto;
        margin-left: 20px;
        margin-top: 20px;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.form-control {
    outline: none;
    font-size: 13px;
    height: auto;
    background-clip: inherit !important;
}

    .form-control:focus {
        box-shadow: none;
    }

.member-login, .admin-login {
    background-image: url("/Images/bg_login.jpg");
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

    .member-login .h-p100, .admin-login .h-p100 {
        height: 100vh;
    }

    .member-login .login-box, .admin-login .login-box {
        padding: 20px;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.65);
    }

.card {
    background-color: #fff;
    border: none;
    position: relative;
    margin-bottom: 30px;
    border-radius: 7px;
    box-shadow: 0 2px 17px 2px rgba(0, 0, 0, 0.04);
}

    .card .card-header {
        border-bottom-color: #e6eaea;
        line-height: 30px;
        padding: 10px 30px;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        width: 100%;
        font-size: 15px;
    }

        .card .card-header .card-icon {
            margin-right: 20px;
        }

        .card .card-header h4 {
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 0;
            margin: 0;
            line-height: 30px;
        }

    .card .card-body {
        padding: 30px;
    }

    .card .card-footer {
        padding: 10px 30px;
    }

    .card .card-header, .card .card-footer, .card .card-body {
        background-color: transparent;
    }

    .card.card-new {
        border-radius: 0 !important;
        box-shadow: none !important;
    }

        .card.card-new .card-header {
            background-color: #3e4095;
            color: #fff;
            border-radius: 7px;
            margin-bottom: 10px;
        }

        .card.card-new .card-body {
            border: 1px solid #eee;
            border-radius: 7px;
        }

.form-group label {
    font-weight: 400;
    color: #7a7d7d;
    font-size: 13px;
    letter-spacing: .5px;
}

.form-group .form-control {
    border: 1px solid #e6eaea;
    color: #888a8a;
    line-height: 22px;
}

    .form-group .form-control:focus {
        border-color: #7673e6;
    }

.form-group .input-group-text {
    font-size: 13px;
}

.ngerror {
    font-size: 12px;
    color: #d82b2b;
}

.alert-modal .modal-dialog {
    width: 400px !important;
    margin-left: auto;
    margin-right: auto;
}

    .alert-modal .modal-dialog .modal-alert .alert-icon {
        font-size: 50px;
    }

    .alert-modal .modal-dialog .modal-alert .alert-message {
        padding: 10px 0;
        font-size: 15px;
    }

    .alert-modal .modal-dialog .modal-alert .alert-action {
        margin-top: 20px;
    }

        .alert-modal .modal-dialog .modal-alert .alert-action .btn {
            min-width: 100px;
        }

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

    .panel .panel-heading {
        padding: 10px 15px;
        border-bottom: 1px solid transparent;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .panel .panel-body {
        padding: 15px;
    }

    .panel.panel-default {
        border-color: #ddd;
    }

        .panel.panel-default > .panel-heading {
            color: #333;
            background-color: #f5f5f5;
            border-color: #ddd;
        }

.table thead th {
    background-color: #fafafa;
    border-bottom: 1px solid #dee2e6;
}

.table tbody td {
    border-top: 0;
    border-bottom: 1px solid #dee2e6;
}

@media (max-width: 450px) {
    .alert-modal .modal-dialog {
        width: 95% !important;
    }
}

.zoom-in {
    -webkit-animation: zoomin 0.2s ease-in forwards;
    -moz-animation: zoomin 0.2s ease-in forwards;
    -o-animation: zoomin 0.2s ease-in forwards;
    animation: zoomin 0.2s ease-in forwards;
}

@keyframes zoomin {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.ui-datepicker {
    width: auto;
}

    .ui-datepicker select {
        width: 30% !important;
        margin: 0 3px !important;
        padding: 2px;
        border: 1px solid #eee;
    }

    .ui-datepicker .ui-datepicker-header {
        background: transparent;
        border: 0;
        border-bottom: 1px solid #eee;
        border-radius: 0;
    }

    .ui-datepicker td {
        border: 0 !important;
    }

        .ui-datepicker td a {
            padding: 5px 10px;
            border: 1px solid transparent !important;
        }

            .ui-datepicker td a.ui-state-active {
                border: 1px solid #3d4095;
                background: #3e4095;
            }

            .ui-datepicker td a.ui-state-highlight {
                background: #f0acac;
                color: #fff;
            }

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 13px;
    height: 13px;
    padding: 0.5px;
    background-clip: content-box;
    border: 1.2px solid #aaa;
    background-color: #fff;
    border-radius: 50% !important;
    outline: none !important;
    position: relative;
    vertical-align: middle;
    margin-right: 5px;
    cursor: pointer;
    /*&:checked:before {
        content: "";
        display: block;
        height: 5px;
        position: absolute;
        width: 9px;
        border: 2px solid #333;
        border-top: 0;
        border-right: 0;
        transform: rotate(-45deg);
        top: 4px;
        left: 4px;
    }*/
}

    input[type=radio]:checked {
        border-color: #333;
        background-color: #333;
    }

    input[type=radio] + label {
        vertical-align: middle;
        margin: 0;
    }

input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 18px !important;
    height: 18px !important;
    padding: 0;
    background-clip: content-box;
    border: 1.2px solid #aaa;
    background-color: #fff;
    border-radius: 0 !important;
    outline: none !important;
    position: relative;
    vertical-align: text-bottom;
    margin-right: 5px;
}

    input[type=checkbox]:checked {
        border-color: #333;
    }

        input[type=checkbox]:checked:before {
            content: "";
            display: block;
            height: 5px;
            position: absolute;
            width: 9px;
            border: 2px solid #333;
            border-top: 0;
            border-right: 0;
            transform: rotate(-45deg);
            top: 4px;
            left: 4px;
        }

    input[type=checkbox] + label {
        margin: 0;
    }

.card .btn-primary {
    border-radius: 20px !important;
    padding: 10px 20px !important;
}

.product-card {
    border-radius: 20px !important;
    overflow: hidden;
}

    .product-card .card-body {
        padding: 15px 10px !important;
    }

        .product-card .card-body .card-title {
            height: 40px !important;
            overflow: hidden;
        }

        .product-card .card-body .price {
            float: right;
            position: relative;
            top: -10px;
        }

    .product-card img{
        height:250px;
        display:block;
        width:auto;
        margin:10px auto;
    }


    .login-container {
        background-image: url('https://static.vecteezy.com/system/resources/previews/014/468/621/large_2x/abstract-digital-technology-background-with-concept-security-vector.jpg');
        background-size: cover;
    }

    .login-container #rz_btn {
        display: none;
    }

.login-box {
    padding: 20px 20px 50px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 20px;
    margin:40% auto;
}
