/* Minification failed. Returning unminified contents.
(2,28): run-time error CSS1039: Token not allowed after unary operator: '-color-darkest-blue'
(8,17): run-time error CSS1039: Token not allowed after unary operator: '-color-white'
(9,23): run-time error CSS1039: Token not allowed after unary operator: '-font-family'
(18,17): run-time error CSS1039: Token not allowed after unary operator: '-color-dark-bluish-black'
(29,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-13'
(33,21): run-time error CSS1039: Token not allowed after unary operator: '-font-size-16'
(57,25): run-time error CSS1039: Token not allowed after unary operator: '-font-size-15'
 */
.additional-information-outer-container {
    background-color: var(--color-darkest-blue) !important;
    padding-top: 14px;
    padding-bottom: 14px;
}

.additonal-information-title {
    color: var(--color-white) !important;
    font-family: var(--font-family) !important;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.additional-information-container {
    padding-bottom: 1rem !important;
    color: var(--color-dark-bluish-black) !important;
    margin-top: 30px;
    margin-bottom: 19px;
}

.specific-information {
    font-size: 18px;
    margin-bottom: 1rem !important;
}

.f-13px {
    font-size: var(--font-size-13) !important;
}

.f-16px {
    font-size: var(--font-size-16);
}

.rotate {
    transform: rotate(270deg) !important;
    transition: .3s;
}

.rotate-reset {
    transform: rotate(90deg);
    transition: .3s;
    color: rgb(198, 195, 195);
}

.description-color {
    color: #8a898c;
}

@media screen and (max-width: 500px) {
    .additonal-information-title {
        font-size: 12px;
    }

    .f-16px {
        font-size: var(--font-size-15);
    }
}

.m-t-4 {
    margin-top: 1.5rem !important;
}

.box-shadow {
    box-shadow: 0 5px 5px rgba(0,0,0,.05) !important;
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,.05) !important;
}

.border-none {
    border: none !important;
}

