#privacy-box {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    box-shadow: rgba(29,29,27,0.15) 0 -10px 30px 0;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    z-index: 999;
    transition: bottom ease-in-out 1s;
  }
  #privacy-box.show {
    bottom: 0;
  }
#privacy-box .text-wrap:last-child {
    margin-bottom: 0;
}
#privacy-box a {
    color: #555;
    text-decoration: underline;
}
#privacy-box a:hover {
    color:#163a3d;
}
#privacy-box .title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #163a3d;
    margin-bottom: 15px;
  }
#privacy-box button {
    display: inline-block;
    padding: 1rem 1.56rem;
    border: 0;
    border-radius: 0.32rem;
    outline: 0;
    background: #163a3d;
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
    transition: all 0.3s ease-in-out 0s;
    min-height: 60px;
    text-align: center;
}
#privacy-box button:hover {
    filter: brightness(0.9);
}
@media (max-width: 767px) {
    #privacy-box {
        padding: 20px 15px 25px;
        flex-wrap: wrap;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
        justify-content: center;
    }
    #privacy-box > :not(.text-wrap) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #privacy-box .title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    #privacy-box .text-wrap {
        margin-bottom: 20px;
    }
    #privacy-box button {
        min-height: unset;
        padding: 9px 25px;
    }
}
@media (min-width: 992px) and (max-width: 991px) {
    #privacy-box {
        padding: 40px 50px;
    }
    #privacy-box .text-wrap {
        padding-right: 25px;
    }
}
@media (min-width: 992px) {
    #privacy-box {
        padding: 55px 60px;
    }
    #privacy-box .text-wrap {
        padding-right: 10%;
    }
}
.form-validation {
    display: none;
    font-size: 14px;
    margin-top: 10px;
}
.form-validation.error {
    color: red;
}
.custom-checkbox input {
    display: none;
}
.custom-checkbox input:invalid ~ .form-validation {
    display: block;
}
.custom-checkbox input:checked + label .marker::after {
    opacity: 1;
}
.custom-checkbox label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 400;
}
