.d-none {
    display: none !important;
}

select
{
    min-width: 50%;
    min-height: 58px;
    border-radius: 0!important;
}

#confirmation-div a{
    color: #3b3bce;
    font-weight: 600;
}

#confirmation-div {
    text-align: center;
}

#confirmation-div .content {
    text-align: center;
    max-width: 800px;
    padding-top: 25px;
    margin: 0 auto;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    margin: 20px auto;
    box-shadow: inset 0px 0px 0px #FFC636;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #FFC636;
    fill: none;
    animation: stroke 0.6s forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s 0.8s forwards;
    stroke: #fff;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0 }
}

@keyframes scale {
    0%, 100% { transform: none }
    50% { transform: scale3d(1.1, 1.1, 1) }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 30px #FFC636 }
}


#gdpr_consent.is-invalid {
    outline: 2px solid red;
}