* {
    box-sizing: border-box
}

/* Full-width input fields */
/*input[type=text], input[type=password], textarea {*/
.signup-form-input {
    width: 100%;
    padding: 15px;
    /*margin: 5px 0 22px 0;*/
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

.signup-form-field {
    margin: 20px 0 20px 0;
}

.signup-form-error {
    width: 100%;
    /*display: none;*/
    font-size: 12px;
    color: rgb(220, 47, 60);
    font-weight: 600;
    position: absolute;
    text-align: left;
    /*opacity: 0;*/

}

small,
.small {
  font-size: 11px;
  font-weight: 600;
    opacity: 1;
}

/* Add a background color when the inputs get focus */
.signup-form-input:focus {
    background-color: #ddd;
    outline: none;
}

textarea {
    height:95px;
}

/* Set a style for all buttons */
.button-modal {
    background-color: #2b51e3;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 3px;
    font-family: "Montserrat", sans-serif;
}

.button-modal:hover {
    opacity: 1;
}

/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
    float: left;
    width: 50%;
}

/* Add padding to container elements */
.container-modal {
    /*padding: 16px;*/
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 30px;
    padding-left: 30px;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    /*z-index: 1; !* Sit on top *!*/
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #363636c2;
    /*padding-top: 50px;*/
    overflow-y: hidden;
}

@media only screen and (max-height: 718px) {
    .modal {
        overflow-y: auto;
    }
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 450px; /* Could be more or less, depending on screen size */
    box-shadow: 4px 4px 2px rgba(0,0,0, 0.2);
    animation-name:modalopen;
    animation-duration:1s;
}

@media only screen and (max-width: 1367px) and (max-height: 1025px) {
    .modal-content {
        margin: 15% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    }
}

@media only screen and (max-width: 1025px) and (max-height: 769px) {
    .modal-content {
        margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    }
}

@media only screen and (max-width: 768px) {
    .modal-content {
        margin: 20% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
    }
}

@media only screen and (max-width: 600px) {
    .modal-content {
        background-color: #fefefe;
        margin: 15% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
        border: 1px solid #888;
        width: 100%; /* Could be more or less, depending on screen size */
    }
}

@media only screen and (max-height: 721px) and (max-width: 541px) and (min-height: 719px) and (min-width: 539px) {
    .modal-content {
        background-color: #fefefe;
        margin: 6% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
        border: 1px solid #888;
        width: 100%; /* Could be more or less, depending on screen size */
        overflow-y: hidden;
    }
}

/* Style the horizontal ruler */
hr {
    border: 1px solid #CEC6C6C6;
    margin-bottom: 25px;
}

/* The Close Button (x) */
.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 40px;
    font-weight: bold;
    color: rgba(132, 132, 132, 0.84);
}

/* The Close Button (x) */
@media (max-width: 400px) {
    .close {
        position: absolute;
        right: 15px;
        top: 5px;
        font-size: 45px;
        font-weight: bold;
        color: rgba(132, 132, 132, 0.84);
    }
}

.btn-form {
    width: 100%;
}

.close:hover,
.close:focus {
    color: #456bfa;
    cursor: pointer;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
    .cancelbtn, .signupbtn {
        width: 100%;
    }
}

.signup-form-type {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 25px;
}


.contact-form-bottom {
    align-self: center;
}

.signup-form-desc {
    line-height: 1.7;
    margin-bottom: 16px;
    margin-top: 0px;
}

@keyframes modalopen{
    from{opacity: 0}
    to {opacity: 1}
}

@keyframes modalclose{
    from{opacity: 1}
    to {opacity: 0}
}

#consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding:  0.5% 20%;
    /*background-color: rgb(233 237 255);*/
    background-color: rgb(240 242 249);
    transition: opacity 1s ease;
    z-index: 3;
}

.cookie-div-btn {
    font-size: 14px;
    width: 20%;
    float: left;
}

.cookie-div-text p {
    font-size: 12px;
    color: #345aff;
    margin-bottom: auto;
}

.cookie-btn {
    color:#ffffff;
    background-color:#2753ff;
    padding: 9px 21px;
    font-size: 10px;
    border: none;
    transition: 0.3s;
}

.cookie-btn:hover {
    background-color: #1d3db8;
}

@media (min-width: 1400px) {
    .cookie-btn {
        margin-top: 5px;
        margin-left: 15px;
    }
}

.cookie-div-text {
    width: 80%;
    float:left
}

@media (max-width: 1367px) and (max-height: 1025px) and (min-width: 1365px) and (min-height: 1023px) {
    #consent-popup {
        padding:  0.5% 25%;
    }
    .cookie-btn {
        margin-top: 4px;
    }
}

@media (max-width: 1025px) and (max-height: 1367px) and (min-width: 1023px) and (min-height: 1365px) {
    #consent-popup {
        padding:  0.5% 22%;
    }
    .cookie-div-btn {
        font-size: 24px;
        margin-top: -2px;
    }
}

@media (max-width: 1025px) and (max-height: 769px) and (min-width: 1023px) and (min-height: 767px) {
    #consent-popup {
        padding:  0.5% 18%;
    }
    .cookie-div-btn {
        font-size: 24px;
        margin-top: -2px;
    }
}

@media (max-width: 769px) and (max-height: 1025px) and (min-width: 767px) and (min-height: 1023px) {
    #consent-popup {
        padding:  0.5% 16%;
    }
    .cookie-div-btn {
        font-size: 24px;
        margin-top: 7px;
    }
}

@media (max-width: 755px) and (max-height: 813px) and (min-width: 300px) and (min-height: 811px) {
    #consent-popup {
        padding:  1.5% 25% 0 2%;
    }
    .cookie-div-btn {
        font-size: 24px;
        margin-top: 8px;
        float: none;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .cookie-btn {
        padding: 10px 25px;
        font-size: 10px;
        border: none;
    }
    .cookie-div-text p {
        font-size: 11px;
        width: 127%;
    }
}

@media (max-width: 813px) and (max-height: 376px) and (min-width: 811px) and (min-height: 374px) {
    #consent-popup {
        padding:  0 45px 0 10px;
    }
    .cookie-div-btn {
        font-size: 24px;
        margin-top: -5px;
    }
    .cookie-div-text p {
        font-size: 11px;
    }
}


#consent-popup.hidden {
    opacity: 0;
}

.radio-input {
    text-align: left;
}

.company-nf {
    text-align: left;
    font-size:20px;
}