* {
    margin: 0;
    font-family: "Noto Serif";
    box-sizing: border-box;

}

.dynamic-box-color * {
    all: unset;

}

.box {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

p,
span {
    font-size: 18px;
    line-height: 1.8;
}

.main-head {
    font-size: 28px !important;
    line-height: 1.8;
}

a:hover,
a {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.fw-bold {
    font-weight: bold !important;
}

.bg-blue {
    background-color: #3366ff;
}

.text-white {
    color: white;
}

.bg-white {
    background-color: #ffffff;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-td {
    background: #fcfcfc;
}

.d-flex {
    display: flex;
}

.m-auto {
    margin: auto;
}

.mb-1 {
    margin-bottom: 0.7rem;
}

.mb-2 {
    margin-bottom: 1.2rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 3rem;
}


.diff {
    width: 55%;
    text-align: right;
    overflow-x: scroll;
}

.diff_sqr {
    width: 55%;
    text-align: right;
    overflow-x: scroll;
}

.col-width {
    width: 50%;

}

@media only screen and (max-width: 768px) {
    .col-width {
        width: 100%;
    }
}


.align-items-center {
    align-items: center;
}

.res_btn,
.calc_btn,
.btn {
    display: inline-block;
    cursor: pointer;
    padding: 7px 15px;
    font-size: 16px;
    border: solid 1px white;
    transition: all 0.3s ease-in;
}

.res_btn:hover,
.calc_btn:hover,
.btn:hover {
    background: black;
    color: white;
}

.ml-auto {
    margin-left: auto;
}


.pr-50 {
    padding-right: 50px;
}

.form textarea {
    font-size: 18px;
    width: 100%;
    min-height: 140px;
    background-color: white;
}

.calc_btn,
.res_btn {
    width: 131px;
    text-align: center;
}

.res_btn {
    border: #777777 solid 1px;
    color: #777777;
}

.calc_btn {
    border: #3366ff solid 1px;
}

.spantxti {
    display: flex;
    flex-direction: column;
}

.spantxti span {
    margin-bottom: 10px;
}

.spn-down {
    font-size: 1.5rem;
    font-weight: bold;
}

.mt-20 {
    margin-top: 15px;
}

.mb-20 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}


hr {
    margin: 0;
}

.center-it {
    display: flex;
    justify-content: center;
}


.d-none {
    display: none;
}

.main-content ul {
    margin-top: 10px;
}

.text-black {
    color: black;
}

span.text-black {
    font-size: 18px;
}

.gender-check {
    border: 1px solid #3366ff;
    display: flex;
    width: fit-content;
    align-items: center;
}

.gender-check input {
    height: 38px;
    outline: none;
    border: none;
}

#calculate input[type="radio"] {
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 100%;
    cursor: pointer;
}

#calculate label {
    cursor: pointer;
}

#calculate input[type="radio"]:focus {
    background: blue;
}

.gender-check label {
    user-select: none;
}

.gender-check input[type="radio"] {
    display: none;
}

.gender-check input[type="radio"]+label {
    z-index: 10;
    position: relative;
    color: #3366ff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: bold;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 200ms ease;
}

.gender-check input[type="radio"]:checked+label {
    color: white;
    background-color: #3366ff;
}

.gender-check input[type="radio"]+label {
    width: 110px;
    padding: 8px 12px;
}

.justify-content-center {
    justify-content: center;
}

.mt-3 {
    margin-top: 24px;
}

.collap-data .value-row {
    padding-bottom: 8px;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    max-width: 400px;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.collap-data .value-row-last {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    max-width: 400px;
}


.flex-column {
    flex-direction: column;
}

.power {
    display: inline-flex;
    column-gap: 0.25em;
}

/* width */
#population_div ::-webkit-scrollbar {
    height: 5px;
}


/* Handle */
#population_div ::-webkit-scrollbar-thumb {
    background: grey;
    border-radius: 10px;
}

/* Handle on hover */
#population_div ::-webkit-scrollbar-thumb:hover {
    background: #3366ff;
}