:root{
    --theme-color: #00BFF3;
    --theme-background: #013950;
    --theme-black: #060002;
    --theme-font: "Open Sans", sans-serif;
}

body{
    background-color: var(--theme-background);
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--theme-font);
}

a{
    text-decoration: none;
}

.text-sm{
    font-size: 0.9rem;
}

.hsr-theme-text{
    color: var(--theme-color);
}

.text-white-light{
    color: rgba(255,255,255,0.7) !important;
}

#congratsModal .modal-body {
    text-align: center;
}
#videoPlayer {
    display: none;
}


.hsr-login-card{
    background-color: var(--theme-black);
}

.hsr-login-card h1{
    font-weight: 800;
    color: var(--theme-color);
}

.hsr-login-card p{
    color: rgba(255,255,255,0.5);
}

.form-control{
    border: 1px solid var(--theme-color);
    border-left: 0;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    background-color: transparent !important;
    color: var(--theme-color) !important;
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
    padding-left: 0;
}

.form-control:focus{
    box-shadow: none;
}

::placeholder{
    color: rgba(0,191,243, 0.8) !important;
}

.input-group-text{
    border: 1px solid var(--theme-color);
    border-right: 0;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    background-color: transparent !important;
    color: var(--theme-color);
}

.hsr-theme-btn{
    color: var(--theme-black);
    background-color: var(--theme-color) !important;
    font-size: 0.9rem;
    font-weight: 600;
    width: 100%;
    padding: 0.5rem;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.hsr-theme-btn:hover, .hsr-theme-btn:active{
    box-shadow: none;
}


.hsr-theme-heading{
    font-weight: 700;
    color: var(--theme-color);
}

.w-200px{
    width: 200px !important;
}

.hsr-theme-orange-btn{
    color: white !important;
    background-color: orangered !important;
    font-size: 0.9rem;
    font-weight: 600;
    width: 200px;
    padding: 0.5rem;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.hsr-theme-subheading{
    font-weight: 700;
    color: var(--theme-color);
}

table{
    width: 100%;
    background-color: var(--theme-black);
    margin-bottom: 2rem;
}

table, tr, td, th{
    border: 1px solid var(--theme-color);
}

th, td{
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: white;
}

th{
    color: var(--theme-color);
}

.modal-content{
    background-color: var(--theme-black) !important;
    color: #FFD700;
    background-image: url('../images/bg.gif');
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
    position: relative;
}



.hsr-bg-dark{
    text-align: center;
    margin: auto;
    background-color: rgba(0,0,0,.5);
    height: 40vh;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
}

.hsr-bg-dark h2{
    font-weight: 700 !important;
    padding: 0 1rem;
}

.btn-close{
    background-color: red;
    opacity: 1 !important;
    position: absolute;
    top: 10;
    right: 10;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 12;
    font-size: 0.7rem;
}

.modal-content .hsr-theme-btn:hover{
    color: black;
    border-color: var(--theme-color);
}