:root {
    color-scheme: light !important;
}

html {
	background: #00263e;
}
body {
    color: #151515;
	font-family: '42dot Sans', sans-serif;
	font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    word-break: keep-all;
	background: #fff !important;
}
p, ul, li, th, td {
	font-weight: 600;
	font-size: 15px;
}
.dongle {
    font-family: "Dongle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 21px;
    line-height: 21px;
    padding-left: 41px;
}
.row {
    margin: 0;
}
.feedback {	
	max-width: 800px;
    background: #fff;
    padding-top: 25px;
    padding-bottom: 50px;
}
.title {
    text-align: center;
    font-weight: 700;
    padding-top: 100px;
    background: #00263e;
    color: #fff;
    padding: 20px;
}
.privacy-btn {
    border-radius: 5px;
    background: #ffffff;
    color: black;
    border: 0.8px solid rgb(222, 226, 230);
    padding: 3px 10px;
    font-size: 14px;
    margin-top: -4px;
    margin-left: 4px;
}
.btn {
    border-radius: 10px;
    margin: 1em 0em;
    padding: 10px;
    min-width: 160px;
    background: #bbb;
    border: #bbb;
}
.btn-primary:hover {
    background: #15252f;
    border-color: #15252f;
}
label.btn-type {
    background: #f5f5f5;
    width: 100%;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 0;
}
.btn-check:checked + .btn-type {
    background: #00263e;
    color: #fff;
}
.col-form-label {    
    display: flex;
    align-items: center;
    justify-content: center;
	background: #e9ecef;
}
.form-control:focus,
.form-check-input:focus {
    border-color: #ddd;
    box-shadow: 0 0 0 0.25rem rgba(221, 221, 221, 0.25);
}
label:focus-visible {
    outline: none;
}
.table {
    text-align: center;
    border-top: 0.8px solid rgb(222, 226, 230);
    border-right: 0.8px solid rgb(222, 226, 230);
}
.table tr th {
	background: #e9ecef;
	vertical-align: middle;
	line-height: 1.2;
	padding: 10px;
}
.table tr td {
    padding: 20px 5px;
    line-height: 1.2;
}
.fs-12 {font-size: 12px;}
.event {
    text-align: center;
    background: #e9fbff !important;
    border-radius: 15px;
    padding: 30px 0 10px;
    margin-top: 15px;
}
.col-sm-9, .col-sm-4 {
    padding: 20px 3px 20px 20px;
}
.col-sm-9 span {
    display: block;
}
.form-check-label{
    color: black !important;
}
.form-check-input {
    margin-top: 4px;
}
.form-control.is-valid, .was-validated .form-control:valid, .form-control.is-valid:focus {
    border-color: #dee2e6 !important;
    background-image: none;
    box-shadow: none;
}
.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
	border-color: #dee2e6 !important;
}
.form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
    box-shadow: none;
}
.form-control.is-invalid, .was-validated .form-control:invalid {
	border-color: #0d6efd !important;
	background-image: none;
}
.invalid-feedback {
	color: #0d6efd !important;
}
.form-check-input.is-valid, .was-validated .form-check-input:valid,
.form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
    border-color: #dee2e6 !important;
    box-shadow: none;
}
.form-check-input.is-invalid:focus,
.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
	box-shadow: none;
	background-image: none !important;
}
.form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
    background-color: #0d6efd;
    border-color: #0d6efd !important;
}
@media screen and (max-width: 540px) {
    .col-form-label {
		justify-content: flex-start;
    }
    .col-sm-9, .col-sm-4 {
	    padding: 20px 3px;
	}
}

.succ-img{
    border-radius: var(--bs-border-radius);
}

.custom-file-upload {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
}
.custom-file-upload label {
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-right: 1px solid #ced4da;
    white-space: nowrap;
}
.custom-file-upload span {
    padding: 8px 12px;
    flex-grow: 1;
    color: #6c757d;
}
input[type="file"] {
    display: none;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 18px;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid white;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
