/* Let's get this party started */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255,142,210, 1);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255,0,0,0.4);
}
.legalnotice {
    z-index: 9999;
    background-color: #f8f9fa!important;
    position: fixed!important;
    bottom:10px;left:10px;
    margin-right: 10px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"!important;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.legalnotice .card-header{
    font-size: 12px;
    font-weight: bold;
    padding: 0.2rem;
    padding-right: 30px;
    position: relative;
    min-height: 29px;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.legalnotice .card-body{
    color: #000;
    font-weight: 400;
    font-size: 8px;
    padding: 0.2rem;
    max-height: 103px;
    overflow-y: scroll;
    flex: 1 1 auto;
}
.legalnotice .card-body .row{margin-right: 0;margin-left: 0;display: flex;}
.legalnotice .card-body .row div{padding-left: 5px;padding-right: 5px!important;}
.legalnotice .card-body .row div.col-1{}
.legalnotice .card-body a{text-decoration: underline;display: flex;}
.legalnotice .card-header a{
    font-size: 24px;
    text-decoration: none;
    display: block;
    color: #fa7483;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    top: 2px;
    right: 2px;
    position: absolute;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}
.legalnotice .card-header a.collapsed{transform: rotate(0deg);background-color: transparent;transition: all 0.5s ease;color: #333;font-size: 18px;}

@media (max-width: 576px) {
    .legalnotice .card-body a{margin-left: -5px;}
}