@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --blue: #006a91;
    --dark-blue: #003a4f;
    --yellow: #ffee00;
    --orange: #ffad2b;
    --white: #ffffff;
    --black: #000000;
}

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

body{
    background-color: var(--blue);
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

.main-index {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.image-wrapper {
    margin-bottom: 70px;
    margin-top: 20px;
    max-width: 550px;
}

.image-wrapper img {
    width: 100%;
}

.logo h1{
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
}

.logo h1 span{
    font-weight: 500;
    color: var(--yellow);
}

p#datetime {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0px 0px 6px #006a91e3;
}

.site-spo span {
    font-size: 22px;
    font-weight: 400;
    color:var(--white);
}
.site-spo span a{
    color:var(--yellow);
}
footer{
    padding: 10px 0;
    background: var(--dark-blue);
}
footer p{
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.site-btn{
    padding: 8px 50px !important;
}
.site-btn:hover{
    background-color: var(--dark-blue) !important;
}

/* Modal  */

.modal-close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 2px solid var(--black);
    border-radius: 50%;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-filter: grayscale(1) invert(1);
            filter: grayscale(1) invert(1);
}

.modal-content{
    background-color: var(--blue);
}

.modal-form {
    max-width: 650px;
    margin: auto;
    padding: 25px 50px;
    background: #11477d7a;
    -webkit-box-shadow: -2px 2px 2px #000;
            box-shadow: -2px 2px 2px #000;
}

.modal-form .site-btn {
    border-radius: 3px;
    border-width: 1px !important;
}
.modal-form .site-btn:hover {
    background-color: var(--blue) !important;
    color: var(--white);
    border-color: var(--white);
}
.form-label{
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--white);
}

.form-control {
    border-color: var(--blue);
    padding: 8px 12px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--dark-blue);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgb(18 52 86 / 45%);
            box-shadow: 0 0 0 0.25rem rgb(18 52 86 / 45%);
}
.modal-title {
    font-size: 26px;
    color: var(--white);
}

.alert-content.auto-hide {
    position: absolute;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 3px;
    left: 50%;
    top: 2%;
    -webkit-transform: translate(-50%, -2%);
        -ms-transform: translate(-50%, -2%);
            transform: translate(-50%, -2%);
    background: #2c0b0e;
    color: #ff5050;
    border: 1px solid #ff0017;
}

.ownerPageButton {
    background: #123456;
}
.ownerPageButton:hover {
    border-color: var(--white);
    background: #1c548b !important;
}


.modal-box{
    max-width: 650px;
    margin: auto;
}

.openButton{
    background: #123456;
    border: 2px solid white;
    border-radius: 30px;
    -webkit-box-shadow: #00202f 0 10px 20px -10px;
            box-shadow: #00202f 0 10px 20px -10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 8px 8px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.chat-box{
    max-width: 700px;
    margin: auto;
    padding: 25px;
    background: #11477d7a;
    -webkit-box-shadow: -2px 2px 2px #000;
            box-shadow: -2px 2px 2px #000;
}

#chatbox {
    text-align: left;
    background-color: #003143;
    color: white;
    padding: 3px;
    border: 1px solid #005879;
    border-radius: 3px;
    /* width: 95%; */
    height: 45vh;
    overflow: auto;
    line-height: 1.4rem;
}
.left-info{
    text-align: center;
    display: block;
    font-size: 15px;
    color: var(--yellow);
    font-weight: 400;
}
.chat-time{
    color: var(--blue);
}
.user-msg{
    /* display: inline-block; */
    /* position: relative; */
    /* padding: 8px 12px; */
    /* border-radius: 20px; */
    /* background-color: var(--blue); */
    font-size: 16px;
    max-width: 80%;
}
.user-icon{
    width: 35px;
    height: 35px;
    background: var(--orange);
}
.user-name{
    font-size: 16px;
}

/* .home .site-btn:hover{
   color: var(--dark-blue);
} */

.send-meassage-btn {
    background: #fff;
    border-color: var(--blue);
    color: var(--blue);
    border-radius: 0px;
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
    font-weight: 600;
}
.send-meassage-btn:hover{
    background: var(--orange);
    color: var(--white);
}
.user-msg-input{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

button.openButton {
    font-weight: 500;
    border: 0px;
}

button.openButton:hover {
    background: #0096cd;
}
.deleteButton:hover{
    background-color: #8f0c0c !important;
    color: var(--white) !important;
}
.logoutButton:hover{
    color: var(--dark-blue) !important;
    background-color: var(--white) !important;
}

*::-webkit-scrollbar {
    display: none;
}

.added-files.col-12.col-md-6 {
    font-size: 14px;
    /* color: var(--orange); */
}

.added-files-wrapper {
    max-height: 40vh;
    overflow-y: scroll;
}

.deleteButton {
    background-color: DarkRed !important;
}
.deleteButton:hover {
    border-color: DarkRed !important;
}

.admin-page .card{
    background: #11477d7a;
    -webkit-box-shadow: -2px 2px 2px #000;
            box-shadow: -2px 2px 2px #000;
    border-radius: 3px;
}
.admin-page h2{
    color:  var(--orange);
}
.admin-page .h3{
    color:  var(--yellow);
}
.credincials{
    color: var(--white);
}
.openModalButton:hover{
    background-color: #003143;
    color: var(--orange);
    border-color: var(--dark-blue);
}
.action-btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
}
.modal-fullscreen .modal-body {
    overflow-y: none;
}
@media screen and (max-width:590px) {
    .modal-form {
        padding: 20px;
    }

    .logo h1 {
        font-size: 24px;
    }

    p#datetime {
        font-size: 14px;
    }

    footer p {
        font-size: 14px;
    }
    .chat-box{
        padding: 10px;
    }
    .site-btn {
        padding: 5px 35px !important;
    }
    .action-btn {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:376px) {
    .logo h1 {
        font-size: 22px;
    }

    p#datetime {
        font-size: 12px;
    }

    footer p {
        font-size: 12px;
    }

    .modal-title {
        font-size: 22px;
    }
    h3.info{
        font-size: 20px;
    }
}