html {
    background-image: url('images/bg-purple.png');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

p, a, span, input, select, div {
    font-family: 'Assistant', sans-serif;
}

#page-container {
    padding: 30px;

}

#logo-container {
    text-align: center;
    margin-bottom: 35px;
}

#form-container {
    margin-top: 35px;
    padding: 30px;
    border: 10px solid #4B2755;
    border-radius: 40px;
    margin: 0 auto;
    position: relative;
    max-width: 1280px;
    background: rgba(220,220,220,0.4);
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(220,220,220,0.4) 40%,rgba(220,220,220,0.4) 100%);
}

#carousel-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
}

.carousel-img-container {
    justify-self: center;
    align-self: start;
    text-align: center;
    display: inline-block;
    margin: 10px;
}

#carousel-container-mob {
    display: none;
    margin-bottom: 30px;
}

.carousel-cell {
    width: 100%;
    text-align: center;
}

.flickity-page-dots {
    display: none;
}

.flickity-page-dots .dot {
    background-color: #ffffff !important;
}

.img-item {
    width: 100%;
    height: 100%;
    max-width: 105px;
    max-height: 105px;
}

.icon-text {
    color: #ffffff;
    font-size: 18px;
    direction: rtl;
    text-align: center;
    margin: 0;
}

.description-text {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    direction: rtl;
    text-align: center;
    margin: 10px 0 10px 0;
}

.form-field {
    width: 50%;
    padding: 20px;
}

.input-label {
    width: 28%;
    text-align: left;
}

.input-label span {
    color: #ffffff;
    font-size: 20px;
}

.input-form-cont {
    padding: 2px 7px;
    border-radius: 10px;
    background-color: #fff;
    width: 75%;
}

.form-input {
    width: 100%;
    outline: none;
    border: none;
    font-size: 20px;
    height: 2em;
    background-color: transparent;
    font-weight: 400;
}

.error-input {
    border: 2px solid red;
}

/* Customize the label (the container) */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #B93891;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    right: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#button-container {
    width: 80%;
    max-width: 350px;
    background-color: #F4A00F;
    border-radius: 50px;
    padding: 10px 0px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    margin-top: 30px;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #B93891; /* Blue */
    border-radius: 50%;
    width: 23px;
    height: 23px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

#thankyou-message {
    margin-top: 35px;
}

/* Popup container */
.privacy-policy-popup {
    position: relative;
    display: inline-block;
}

.privacy-policy-text {
    cursor: pointer;
    text-decoration: underline;
}

.close {
    color: #aaa;
    position: absolute;
    font-size: 28px;
    font-weight: bold;
    top: 0;
    right: 10px;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
/* The actual popup (appears on top) */
.privacy-policy-popup .popuptext {
    visibility: hidden;
    width: 400px;
    background-color: #fff;
    color: #555;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: -60%;
    margin-left: -80px;
}
  
/* Popup arrow */
.privacy-policy-popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
  
/* Toggle this class when clicking on the popup container (hide and show the popup) */
.privacy-policy-popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}
  
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
  
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
}

.form-select {
    outline: none;
    border-radius: 10px;
    border: none;
    height: 100%;
    width: fit-content;
    font-size: 20px;
    font-weight: 400;
    padding-right: 3px;
    background-color: transparent;
    -webkit-appearance:menulist;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

table.form-input td:nth-child(2) {
        padding-left: 18px !important;
    }

@media (max-width: 1200px) {
    .description-text br{
        display: none;
    }

    .input-form-cont {
        width: 75%;
    }
}

@media (max-width:800px) {
    #description-text {
        font-size: 20px;
    }

    .input-form-cont {
        width: 100%;
    }

    .form-field table td {
        padding: 5px;
    }

    #page-container {
        padding: 10px;
        height: fit-content;
        background-size: cover;
    }
}

@media (max-width:670px) {

    .mobile_hide {
        display: none;
    }

    #form-container {
        padding: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        border: 3px solid #4B2755;
    }

    #carousel-container {
        display: none;
    }

    #carousel-container-mob {
        display: block;
    }

    .img-item {
        width: 85px;
        height: 85px;
    }

    .description-text {
        font-size: 16px;
    }

    .form-field {
        width: 100%;
        display: block;
        padding: 0;
    }

    .input-form-cont {
        width: 85%;
        font-size: 20px;
    }

    .input-label {
        width: 30%;
    }

    .input-label span {
        font-size: 16px;
    }

    .privacy-policy-popup .popuptext {
        width: 200px;
        left: 30%;
    }
    
    table.form-input td:nth-child(1) {
        width: 65px !important;
    }
    
    table.form-input td:nth-child(2) {
        padding-left: 12px !important;
    }
    
    .form-input {
        font-size: 16px !important;
    }
    
    
}