/* line 4, cookie-consent.scss */
.cookie-consent-modal {
    padding-top: 0;
    position: static;
    width: auto;
    height: auto;
    z-index: 1000;

    font-size: 1.4rem;
}
.modal-header .modal-title {
    text-align: center;
    color: #000;
}
/* line 11, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap {
    position: fixed;
    bottom: 0;
    margin: 1rem;
}
/* line 15, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap.right {
    right: 0;
}
/* line 18, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap.left {
    left: 0;
}
/* line 21, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content {
    border: 0px;
    background-color: #fff;
    color: #0a0944;
    border-radius: 4px;
    box-shadow: 0px 1px 9px 6px rgb(99 99 99 / 42%);
    padding: 0;
    max-width: 700px;
}
/* line 31, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-header {
    padding-top: 1rem;
    text-align: center;
    border-bottom: 0px;
    position: relative;
}
/* line 35, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-header h3 {
    margin: 0;
    font-size: 110%;
    font-weight: 500;
    color: #000;
    position: relative;
    top: 0.2rem;
}
/* line 44, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-body {
  padding: 2rem 2rem 0.5rem 2rem;
  line-height: 1.3;
}
/* line 48, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-body a {
    color: #29b5f7;
    text-decoration: none;
}
/* line 51, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-body a:hover {
    text-decoration: underline;
}
/* line 57, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
}
/* line 61, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
/* line 66, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn {
    padding: 0.7rem 1.1rem;
    font-size: 100%;
    cursor: pointer;
    border: none;
    border-radius: 0.2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
/* line 77, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-primary {
    background-color: #00ff7f;
    height:36px;
    border-radius:4px;
    color: #000;
}
/* line 81, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-primary:hover {
    background-color:#00f379;
    color: #0a0944;
}
/* line 87, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-secondary {
  background-color: transparent;
  color: #565656;
  border-radius:4px;
}
/* line 91, cookie-consent.scss */
.cookie-consent-modal .modal-content-wrap .modal-content .modal-footer .buttons .btn.btn-secondary:hover {
    background-color: transparent;
    color: #0a0944;
}
@media screen and (max-width: 620px) {
    /* line 102, cookie-consent.scss */
    .cookie-consent-modal .btn {
        width: 100%;
    }
}
/* line 107, cookie-consent.scss */
.cookie-consent-modal.block-access {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 20vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
@media screen and (max-width: 620px) {
    /* line 107, cookie-consent.scss */
    .cookie-consent-modal.block-access {
        padding-top: 0;
    }
}
/* line 119, cookie-consent.scss */
.cookie-consent-modal.block-access .modal-content-wrap {
    position: relative;
    margin: 2.5% auto;
    bottom: auto;
    width: 95%;
}
/* line 122, cookie-consent.scss */
.cookie-consent-modal.block-access .modal-content-wrap .modal-content {
    border: none;
    margin: 0 auto;
}
.btn-close {
    color: #fff;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    text-decoration: none;
    line-height: 20px;
    border-radius: 50%;
    font-weight: bold;
    top: 10px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background: #29b5f7;
}
.btn-close:hover,
.btn-close:focus {
    transform: rotate(405deg);
    -webkit-transform: rotate(405deg);
    color: #0a0944;
    background: #00ff7f;
    transition: 2s;
}
#cookieConsentModal {
    z-index: 9999;
    position: absolute;
}
