/* 

*********
COLORS

White       #FFFFFF
Axinom Blue #00467D
Lite Blue   #28AAE1
Mid Blue    #1478AF
Red         #F06E55
Orange      #FA961E
Green       #96C841
Yellow      #FFC81E

Lite Grey   #F5F5F5

Buttons     #96C841
Buttons:hover #648C1F

**********************
m_columnContainer = 936px width
m_columnContainerBig = 1536px width

*/

a.topbnrTxt {
    text-decoration: none;
    color: white;
    font-family: Fira Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 10px 0px 10px 0;
}

a.topbnrTxt:hover {
    cursor: pointer;
}

p.topBnr {
    font-family: Fira Sans;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.bannerWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 44px 0 0;
    border-radius: 16px;
    width: fit-content;
    background-color: #96C841;
}

#toggle:checked~.hide {
    display: none;
}

#toggle:checked {
    display: none;
}

.visually-hidden {
    position: relative;
    left: calc(100% + 12px);
    opacity: 0;
}

.bannerWrap:hover {
    border-radius: 16px;
    background-color: #648C1F;
}

.txtPadding {
    padding: 10px 0px 10px 0;
}

.mrgnR12 {
    margin-right: 12px;
}

.close {
    position: relative;
    width: 16px;
    height: 16px;
    opacity: 0.5;
    cursor: pointer;
}

.close:hover {
    opacity: 1;
}

.close:before,
.close:after {
    position: absolute;
    left: 8px;
    content: ' ';
    height: 16px;
    width: 2px;
    background-color: rgb(255, 255, 255);
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 600px) {
    p.topBnr {
        font-size: 14px;
        line-height: 20px;
    }
}