﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.card-container {
    width: 100%;
    height: auto;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fafbff;
}
.card-pr {
    width: 100%;
    height: auto;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fafbff;
}
    .card-container .top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .card-container .top p {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .card-container .top button {
            outline: 0;
            border: 0;
            -webkit-appearance: none;
            background: #5256ad;
            color: #fff;
            border-radius: 4px;
            transition: 0.3s;
            cursor: pointer;
            box-shadow: 0 0 5px rgba(0,0,0,0.15);
            font-size: 0.8rem;
            padding: 8px 13px;
        }

            .card-container .top button:hover {
                opacity: 0.8;
            }

            .card-container .top button:active {
                transform: translateY(5px);
            }

.form-submit {
    width: 100%;
    min-height: 75px;
    border-radius: 5px;
    border: 2px dashed #d5d5e1;
    color: #c8c9dd;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    background: #dfe3f2;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    margin-top: 20px;
}

    .form-submit .select {
        color: #5256ad;
        margin-left: 7px;
        cursor: pointer;
    }

    .form-submit input {
        display: none;
    }

    .form-submit.dragover {
        border-style: solid;
        font-size: 2rem;
        color: #c8c9dd;
        font-weight: 600;
        background: rgba(0, 0, 0,0.34);
    }
.form-pr {
    width: 100%;
    min-height: 75px;
    border-radius: 5px;
    border: 2px dashed #d5d5e1;
    color: #c8c9dd;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    background: #dfe3f2;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    margin-top: 20px;
}
.form-blog {
    width: 100%;
    min-height: 75px;
    border-radius: 5px;
    border: 2px dashed #d5d5e1;
    color: #c8c9dd;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    background: #dfe3f2;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    margin-top: 20px;
}
.custom-file-label{display:none}
.form-pr .selectpr {
    color: #5256ad;
    margin-left: 7px;
    cursor: pointer;
}
.form-blog .selectblog {
    color: #5256ad;
    margin-left: 7px;
    cursor: pointer;
}
.selectfile {
    color: #5256ad;
    margin-left: 7px;
    cursor: pointer;
}
.form-blog input {
    display: none;
}
.form-pr input {
    display: none;
}
.form-blog.dragover {
    border-style: solid;
    font-size: 2rem;
    color: #c8c9dd;
    font-weight: 600;
    background: rgba(0, 0, 0,0.34);
}
    .form-pr.dragover {
        border-style: solid;
        font-size: 2rem;
        color: #c8c9dd;
        font-weight: 600;
        background: rgba(0, 0, 0,0.34);
    }
.container-display {
    gap:10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    height: auto;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}
.container-displayp {
    gap: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    height: auto;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}
.container-files {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    height: auto;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}
    .container-display .image {
        height: 150px;
        width: 150px;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0,0,0,0.15);
        overflow: hidden;
        position: relative;
        margin-bottom: 7px;
        margin-right: 7px;
    }

        .container-display .image:nth-child(4n) {
            margin-right: 0;
        }

        .container-display .image img {
            height: 100%;
            width: 100%;
        }

        .container-display .image span {
            position: absolute;
            top: -4px;
            right: 5px;
            cursor: pointer;
            font-size: 22px;
            color: #c3b1b1;
        }

            .container-display .image span:hover {
                opacity: 0.8;
            }
.avatar{vertical-align:middle;
        width:100px;
        height:100px;
        
}



/* popup */

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80%;
    max-width: 1600px;
    height: 90vh;
    max-height: 800px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: 0.5s;
    opacity: 0;
}

    .active-tv {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

.popup .active-tv .close-btn,
.popup .active-tv .image-name,
.popup .active-tv .index,
.popup .active-tv .large-image,
.popup .active-tv .arrow-btn {
    opacity: 0;
    transition: opacity .5s;
    transition-delay: 1s;
}

    .popup .top-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: #000;
        color: #fff;
        text-align: center;
        line-height: 50px;
        font-weight: 300;
    }

        .popup .top-bar .image-name {
            opacity: 1;
        }

.close-btn {
    opacity: 1;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f00;
    cursor: pointer;
}

.arrow-btn {
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
    transform: translateY(-50%) rotate(180deg);
}

.arrow-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.index {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 80px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
}

.large-image {
    margin-top: 5%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 1;
}
.gallery-image {
    position: relative;
}
    .gallery-image .image-cx {
        height: 150px;
        width: 150px;
        border-radius: 5px;
        box-shadow: 0 0 5px rgba(0,0,0,0.15);
        overflow: hidden;
        position: relative;
        margin-bottom: 7px;
        margin-right: 7px;
    }
#PreviewPhoto {
    width:250px;
    height:250px;
    border:1px;
    margin-top:20px;
    border-radius:10px;
   
}
.main-login{
    background-image:url("../img/z4532859389839_e5bd16519eedf07d8806d2bc8c27420a.jpg")
}
.image-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-image:hover .image-button {
    opacity: 1;
}
.bg-image-vertical {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}
.btn-custom {
    color: #fff;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    width:100%;
}
.brand-wrapper {
    margin-bottom: 19px;
}

    .brand-wrapper .logo {
        height: 150px;
    }

.login-card {
    border: 0;
    border-radius: 27.5px;
    box-shadow: 0 10px 30px 0 rgba(172, 168, 168, 0.43);
    overflow: hidden;
}

.login-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: inherit;
}

.login-card .card-body {
    padding: 85px 60px 60px;
}
nav.main-header.navbar.navbar-expand.navbar-white.navbar-light {
    background-image: url("../img/z4532859389839_e5bd16519eedf07d8806d2bc8c27420a.jpg")
}

@media (max-width: 422px) {
    .login-card .card-body {
        padding: 35px 24px;
    }
}

.login-card-description {
    font-size: 25px;
    color: #000;
    font-weight: normal;
    margin-bottom: 23px;
}

.login-card form {
    max-width: 326px;
}

.login-card .form-control {
    border: 1px solid #d5dae2;
    padding: 15px 25px;
    margin-bottom: 20px;
    min-height: 45px;
    font-size: 13px;
    line-height: 15;
    font-weight: normal;
}

    .login-card .form-control::-webkit-input-placeholder {
        color: #919aa3;
    }

    .login-card .form-control::-moz-placeholder {
        color: #919aa3;
    }

    .login-card .form-control:-ms-input-placeholder {
        color: #919aa3;
    }

    .login-card .form-control::-ms-input-placeholder {
        color: #919aa3;
    }

    .login-card .form-control::placeholder {
        color: #919aa3;
    }

.login-card .login-btn {
    padding: 13px 20px 12px;
    background-color: #000;
    border-radius: 4px;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
    margin-bottom: 24px;
}

    .login-card .login-btn:hover {
        border: 1px solid #000;
        background-color: transparent;
        color: #000;
    }

.login-card .forgot-password-link {
    font-size: 14px;
    color: #919aa3;
    margin-bottom: 12px;
}

.login-card-footer-text {
    font-size: 16px;
    color: #0d2366;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .login-card-footer-text {
        margin-bottom: 24px;
    }
}

.login-card-footer-nav a {
    font-size: 14px;
    color: #919aa3;
}

.footer-link {
    position: absolute;
    bottom: 1rem;
    text-align: center;
    width: 100%;
}
.text-red{
   color:red;
}
.btn-warningfile {
    position: relative;
    padding: 11px 16px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    background-color: #ffc100;
    border: 0;
    transition: 0.2s;
    overflow: hidden;
   
}

    .btn-warningfile input[type = "file"] {
        cursor: pointer;
        position: absolute;
        left: 0%;
        top: 0%;
        transform: scale(3);
        opacity: 0;
    }

    .btn-warningfile:hover {
        background-color: #d9a400;
    }
.icon-custom{
    font-size:18px;
    margin-right:7px;
    margin-left:6px;
}



@media (max-width: 575.98px) {
    .slider img {
        max-width: 100%;
        height: 350px;
    }

    .slick-prev {
        display: none !important;
    }

    .slick-next {
        display: none !important;
    }
}
/* The switch - the box around the slider */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider-toggle:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider-toggle {
    background-color: #2196F3;
}

input:focus + .slider-toggle {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-toggle:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider-toggle.round {
    border-radius: 34px;
}

    .slider-toggle.round:before {
        border-radius: 50%;
    }
.btn-custom-sm{
    width:73px;
}
.form-input-artifact {
    width: 500px;
    border-radius: 5px;
    background-color: #e7e7e7;
    padding: 5px;
}