
.checkbox-wrapper-4 * {
    box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 0px;
}

.checkbox-wrapper-4 .cbx:hover {
    background: rgba(0, 119, 255, 0.06);
}

.checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: rgb(42 106 182);
}

.checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: rgb(42 106 182);
    border-color: rgb(42 106 182);
    animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
        width: 100%;
        display: inline-block;
    }
}

@-moz-keyframes wave-4 {
    50% {
        transform: scale(0.7);
    }
}

@-webkit-keyframes wave-4 {
    50% {
        transform: scale(0.7);
    }
}

@-o-keyframes wave-4 {
    50% {
        transform: scale(0.7);
    }
}

@keyframes wave-4 {
    50% {
        transform: scale(0.7);
    }
}

.checkbox-wrapper-5 * {
    box-sizing: border-box;
}

.checkbox-wrapper-5 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
}

.checkbox-wrapper-5 .cbx:not(:last-child) {
    margin-right: 0px;
}

.checkbox-wrapper-5 .cbx:hover {
    background: rgba(244, 67, 54, 0.06);
}

.checkbox-wrapper-5 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-5 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(244, 67, 54, 0.05);
}

.checkbox-wrapper-5 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-5 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}

.checkbox-wrapper-5 .cbx:hover span:first-child {
    border-color: rgb(244 67 54);
}

.checkbox-wrapper-5 .inp-cbx {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-5 .inp-cbx:checked + .cbx span:first-child {
    background: rgb(244 67 54);
    border-color: rgb(244 67 54);
    animation: wave-5 2s ease;
}

.checkbox-wrapper-5 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-5 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 640px) {
    .checkbox-wrapper-5 .cbx {
        width: 100%;
        display: inline-block;
    }
}

@-moz-keyframes wave-5 {
    50% {
        transform: scale(1.6);
    }
}

@-webkit-keyframes wave-5 {
    50% {
        transform: scale(1.6);
    }
}

@-o-keyframes wave-5 {
    50% {
        transform: scale(1.6);
    }
}

@keyframes wave-5 {
    50% {
        transform: scale(1.6);
    }
}

@keyframes highlight {
    0% {
        color: red;
        transform: scale(1);
    }
    50% {
        color: red;
        transform: scale(1.02);
    }
    100% {
        color: #A2A3A5;
        transform: scale(1);
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

#resultsinfo {
    animation: highlight 2s ease-in-out, flash 0.4s 3;
    animation-delay: 0.5s;
}

@media (max-width: 700px) {
    .hidden-on-small {
        display: none;
    }
    .mobile-padding {
        padding: 3px!important;
    }
    .mobile-margin{
        margin-bottom: 20px!important;
        /*margin-right: 7px!important;*/
    }
}

@media (max-width: 350px) {
    .xxs-squeeze-h2 {
        font-size: 1rem !important;
        margin-bottom: 7px;
    }

    .xxs-squeeze-h3 {
        font-size: 1.3rem !important;
    }

    .xxx-squeeze-paragraph {
        font-size: 0.7rem !important;
    }
}

@media (max-height: 700px) {
    .app-header {
        display: none;
    }

    .replace-header {
        display: inline;
    }

    .text-header {
        display: none;
    }
    .xxs-squeeze-h2 {
        font-size: 1rem !important;
        margin-bottom: 7px;
    }

    .xxs-squeeze-h3 {
        font-size: 1.3rem !important;
    }

    .xxx-squeeze-paragraph {
        font-size: 0.7rem !important;
    }
}

@media (min-height: 701px) {
    .replace-header {
        display: none;

    }
    .text-header {
        display: inline;
    }
}



/*#check-group {*/
/*    animation: 0.5s ease-in-out 1s check-group;*/
/*    transform-origin: center;*/
/*}*/

/*#check-group #check {*/
/*    animation: 0.25s cubic-bezier(0.65, 0, 0.4, 1) 0.8s forwards check;*/
/*    stroke-dasharray: 0, 75px;*/
/*    stroke-linecap: round;*/
/*    stroke-linejoin: round;*/
/*}*/

/*#check-group #outline {*/
/*    animation: 0.38s ease-in outline;*/
/*    transform: rotate(0deg);*/
/*    transform-origin: center;*/
/*}*/

/*#check-group #white-circle {*/
/*    animation: 0.35s ease-in 0.35s forwards circle;*/
/*    transform: none;*/
/*    transform-origin: center;*/
/*}*/

/*@keyframes outline {*/
/*    from {*/
/*        stroke-dasharray: 0, 345.576px;*/
/*    }*/
/*    to {*/
/*        stroke-dasharray: 345.576px, 345.576px;*/
/*    }*/
/*}*/

/*@keyframes circle {*/
/*    from {*/
/*        transform: scale(1);*/
/*    }*/
/*    to {*/
/*        transform: scale(0);*/
/*    }*/
/*}*/

/*@keyframes check {*/
/*    from {*/
/*        stroke-dasharray: 0, 75px;*/
/*    }*/
/*    to {*/
/*        stroke-dasharray: 75px, 75px;*/
/*    }*/
/*}*/

/*@keyframes check-group {*/
/*    from {*/
/*        transform: scale(1);*/
/*    }*/
/*    50% {*/
/*        transform: scale(1.1);*/
/*    }*/
/*    to {*/
/*        transform: scale(1);*/
/*    }*/
/*}*/
@keyframes breathing {
    0%, 100% {
        border-color: #1971d7;
        transform: scale(1);
        box-shadow: 0 0 0px #186dce;
    }
    50% {
        border-color: #2c7bda;
        transform: scale(1.00);
        box-shadow: 0 0 4px #6cb4ff;
    }
}

#inputbox1:focus-within {
    animation: breathing 2s infinite;
    border: 1px solid; /* Ensure the element has a border */
}

#inputbox2:focus-within {
    animation: breathing 2s infinite;
    border: 1px solid; /* Ensure the element has a border */
}
#inputbox3:focus-within {
    animation: breathing 2s infinite;
    border: 1px solid; /* Ensure the element has a border */
}

.modal {
    backdrop-filter: blur(8px); height: 100%; background-color: rgba(150,150,150,0.1);z-index: 1000;
}