.body-base{
    background-color: #e6f0f7; 
    font-family:Arial, Verdana, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.block{
    background-color:white;
    color:rgb(23, 99, 191);
    border-radius: 10px;
    border: 1px solid rgb(23, 99, 191);
    padding: 0 0;
}

/* forms */
.central-form{
    width: 450px;
    margin-top:2%;
}

.central-form-wide{
    width: 650px;
    margin-top:2%;
}

.basic-form{
    width: 600px;
    margin-top: 15px;
}

.basic-form-wide{
    max-width: 1200px;
    width: 70%;
    margin-top: 15px;
}

/* logo */
.logo-wide{
    width: 291px;
    height: 42px;
}
.logo-narrow{
    width: 204px;
    height: 30px;
}

/* inputs */
.input-base{
    border-radius: 10px;
    border: 1px solid rgb(23, 99, 191);
    width:100%;
    height: 35px;
    padding-left: 10px;
    margin: 8px 0;
    display: inline-block;
    box-sizing: border-box;
    text-decoration-color: rgb(23, 99, 191);
}

.input-file{
    font-size: 14px;
    font-weight:bold;
}

.textarea-base{
    border-radius: 10px;
    border: 1px solid rgb(23, 99, 191);
    width:100%;
    min-height: 200px;
    padding-left: 10px;
    margin: 8px 0;
    display: inline-block;
    box-sizing: border-box;
    text-decoration-color: rgb(23, 99, 191);
    resize: vertical;
    font-size: 14px;
}

input[type="checkbox"]{
    cursor: pointer;
}

/* labels */
.label-input{
    color: rgb(23, 99, 191);
    font-weight: bold;
}

/* password control */
.password {
    position: relative;
}

.password-control {
    position: absolute;
    top: 4px;
    right: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(css-images/view.png) 0 0 no-repeat;
    cursor: pointer;
    margin-top: 13px; 
    margin-right: 25px;
}

.password-control.view {
    background: url(css-images/no-view.png) 0 0 no-repeat;
    cursor: pointer;
}

/* text */
.link{
    color: #002bc7; 
    text-decoration: none;
}

.warning{
    color: #c41104; 
    white-space: normal;
}

/* buttons */
.button-primary {
    background-color:rgb(23, 99, 191);
    color:white;
    border: none;
    font-size:16px;
    border-radius: 10px;
    opacity: 0.8;
    cursor: pointer;
    min-height: 40px;
}

.button-secondary{
    background-color:white;
    color:rgb(23, 99, 191);
    font-size:16px;
    border-radius: 10px;
    border: 1px solid rgb(23, 99, 191);
    opacity: 0.8;
    cursor: pointer;
    min-height: 40px;
}

.button-success{
    background-color:rgb(36, 159, 28);
    color:white;
    border: none;
    font-size:16px;
    border-radius: 10px;
    opacity: 0.8;
    cursor: pointer;
    min-height: 40px;
}

.button-link{
    background: transparent;
    border: none;
    text-decoration: underline;
    opacity: 0.8;
    cursor: pointer;
}

.button-text{
    background: transparent;
    border: none;
    text-decoration: none;
    opacity: 0.8;
    color: rgb(23, 99, 191);
    cursor: pointer;
}

.button-transparent {
    background-color: transparent;
    border: none;
}

.button-disabled{
    background-color: rgb(202, 202, 202);
    color: rgb(255, 255, 255);
    font-size: 16px;
    border-radius: 10px;
    border: 2px DarkGray;
    pointer-events: none;
    min-height: 40px;
}

.button-image-container{
    width: 40px;
    height: 40px;
    margin-top: -2px;
    padding: 0;
}

.button-image{
    width: 100%;
    height: 100%;
}

button:hover {
    opacity: 0.9;
    cursor: pointer;
}

/* modal */
.modal {
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
  
.modal-content {
    padding: 10px;
    position: fixed;
    left: calc(50% - 200px);
    top: 5%;
    font-size: 14px;
    width: 400px;
    height: min-content;
    white-space: normal;
}



/* applied classes */
.hidden{
    display: none;
}

.align-center{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.align-justify{
    text-align: justify;
    text-justify: inter-word;
}

.page-break{
    page-break-after: always;
}

.break-word-all{
    word-break: break-all;
}

/* borders */
.border-solid{
    border: grey solid 1px;
}

.border-top-solid{
    border-top: grey solid 1px;
}

/* tables */
.table-bordered{
    border: 2px solid black;
    border-spacing:0;
    border-collapse: collapse;
    padding: 0;
}

.table-bordered-tr{
    border: 2px solid black;
    padding: 0;
}

.table-bordered-td{
    border: 2px solid black;
    padding:3px;
    padding-left:3px;
}

/* paddings */
.p-5{
    padding: 5px;
}
.p-10{
    padding: 10px;
}
.p-15{
    padding: 15px;
}
.p-16{
    padding: 16px;
}

.pt-5{
    padding-top: 5px;
}
.pt-8{
    padding-top: 8px;
}
.pt-10{
    padding-top: 10px;
}
.p-11{
    padding: 11px;
}

.pt-11{
    padding-top: 11px;
}
.pt-15{
    padding-top: 15px;
}

.pb-11{
    padding-bottom: 11px;
}
.pb-15{
    padding-bottom: 15px;
}

.pl-3{
    padding-left: 3px;
}
.pl-11{
    padding-left: 11px;
}
.pl-15{
    padding-left: 15px;
}
.pl-45{
    padding-left: 45px;
}
.pl-50{
    padding-left: 50px;
}
.pl-60{
    padding-left: 60px;
}

.pr-5{
    padding-right: 5px;
}
.pr-11{
    padding-right: 11px;
}
.pr-15{
    padding-right: 15px;
}
.pr-45{
    padding-right: 45px;
}
.pr-50{
    padding-right: 50px;
}
.pr-60{
    padding-right: 60px;
}

/* margins */
.m-0{
    margin: 0;
}
.m-10{
    margin: 10px;
}
.m-15{
    margin: 15px;
}
.m-auto{
    margin: auto;
}

.mr-5{
    margin-right: 5px;
}
.mr-10{
    margin-right: 10px;
}
.mr-15{
    margin-right: 15px;
}
.mr-20{
    margin-right: 20px;
}
.mr-25{
    margin-right: 25px;
}

.ml-5{
    margin-left: 5px;
}
.ml-10{
    margin-left: 10px;
}
.ml-15{
    margin-left: 15px;
}
.ml-20{
    margin-left: 20px;
}
.ml-30{
    margin-left: 30px;
}
.ml-40{
    margin-left: 40px;
}
.ml-50{
    margin-left: 50px;
}
.ml-100{
    margin-left: 100px;
}
.ml-120{
    margin-left: 120px;
}

.mt-3{
    margin-top: 3px;
}
.mt-5{
    margin-top: 5px;
}
.mt-8{
    margin-top: 8px;
}
.mt-10{
    margin-top: 10px;
}
.mt-15{
    margin-top: 15px;
}
.mt-20{
    margin-top: 20px;
}
.mt-25{
    margin-top: 25px;
}
.mt-30{
    margin-top: 30px;
}
.mt-35{
    margin-top: 35px;
}
.mt-50{
    margin-top: 50px;
}
.mt-100{
    margin-top: 100px;
}


.mb-5{
    margin-bottom: 5px;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-15{
    margin-bottom: 15px;
}
.mb-20{
    margin-bottom: 20px;
}

/* min-height */
.mh-min-content{
    min-height: min-content;
}

.mh-500px{
    min-height: 500px;
}

/* height */
.h-min-content{
    height: min-content;
}

.h-min-25{
    min-height: 25%;
}

.h-25{
    height: 25%;
}
.h-50{
    height: 50%;
}
.h-75{
    height: 75%;
}
.h-100{
    height: 100%;
}

/* width */
.w-10{
    width:10%;
}
.w-15{
    width: 15%;
}
.w-20{
    width: 20%;
}
.w-25{
    width: 25%;
}
.w-30{
    width: 30%;
}
.w-35{
    width: 35%;
}
.w-40{
    width: 40%;
}
.w-45{
    width: 45%;
}
.w-48{
    width: 48%;
}
.w-49{
    width: 49%;
}
.w-50{
    width: 50%;
}
.w-70{
    width: 70%;
}
.w-74{
    width: 74%;
}
.w-75{
    width: 75%;
}
.w-80{
    width: 80%;
}
.w-85{
    width: 85%;
}
.w-90{
    width: 90%;
}
.w-95{
    width: 95%;
}
.w-98{
    width: 98%;
}
.w-100{
    width: 100%;
}

.w-1_1{
    width: calc(100% / 1);
}
.w-1_2{
    width: calc(100% / 2);
}
.w-1_3{
    width: calc(100% / 3);
}
.w-1_4{
    width: calc(100% / 4);
}

/* font-sizes */
.fs-11{
    font-size: 11px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
.fs-22{
    font-size: 22px;
}
.fs-24{
    font-size: 24px;
}

/* font-weights */
.fw-bold{
    font-weight: bold;
}
.fw-normal{
    font-weight: normal;
}

/* backgrounds */
.bg-info{
    background-color: #e6f0f7;
}
.bg-light-gray{
    background-color: #d9dde0;
}
.bg-green{
    background-color: #dff0d8;
}

/* display */
.d-inline-block{
    display: inline-block;
    vertical-align: top;
}

/* wrapping */
.nowrap{
    white-space:nowrap;
}
.wrap-normal{
    white-space:normal;
}

/* cursor */
.cursor-pointer{
    cursor:pointer;
}

/* overflow */
.overflow-scroll{
    overflow: scroll;
}
.overflow-auto{
    overflow: auto;
}
.overflow-hidden{
    overflow: hidden;
}

/* colors */
.green{
    color: rgb(36, 159, 28);
}
.red{
    color: red;
}
.grey{
    color: #73777a;
}
.yellow{
    color: #f3c11c;
}
.black{
    color: black;
}

.primary{
    color: rgb(23, 99, 191);
}

/* waiting animation */
@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin {
    display: inline-block;
    border: 4px solid rgba(209, 10, 10, 0.1);
    border-left-color: #b4b9f5;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: donut-spin 1.2s linear infinite;
}

.overlay{
    position: absolute;
    width: calc(80% - 35px);; 
    height: calc(100% - 80px);
    z-index: 1;
    background: rgba(173,176,180, 0.5);
    border-radius: 10px;
}

.weather-container{
    height: 210px;
    overflow: hidden;
}

.qr-code{
    height: 600px;
    width: 600px;
}