/*declare variables*/
:root {
    --color-orange: #ff886b;
    --transition: all .3s ease;
}

/*hide overflowing body*/
body {
    overflow-y: hidden;
    font-family: "PF Futura Neu Book", arial, sans-serif;
    font-size: 1rem;
}

.text-orange {
    color: var(--color-orange) !important;
}

.text-white {
    color: #fff !important;
}

.text-black {
    color:#000 !important;
}

.background-white {
    background:#fff;
    border-color:#fff !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.outline-button.white-button {
    color: #fff;
}

a, a:hover {
    text-decoration: none !important;
}

.background-orange {
    background-color: var(--color-orange);
}

.gradient-background {
    background: rgb(20, 34, 46);
    background: linear-gradient(34deg, rgba(20, 34, 46, 0.65) 4%, rgba(108, 91, 123, 0.65) 43%, rgba(211, 139, 138, 0.65) 93%);
    color: white;
}

.gradient-background:before,
.white-background:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3c1053;
    opacity: 0.5;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: -1;
    object-fit: cover;
}

.white-background:before {
    background: #fff;
}

.vh-100 {
    height: 100vh;
}

.vertical-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

input[type="text"], input[type="email"], input[type="number"] {
    border-radius:0;
    display: block;
    width: 80%;
    background: transparent;
    border: none;
    padding: 6px 0;
    border-bottom: 1px solid #fff;
}

.button {
    cursor: pointer;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    padding: 9px 5px;
    display:inline-block;
    transition: var(--transition);
    border:1px solid;
}

.button:hover {
    opacity: 0.8 !important;
}

.button.background-orange {
    border-color:var(--color-orange);
}

textarea {
    width: 80%;
    background: transparent;
    border: none;
    border-bottom: 1px solid;
    resize:none;
    overflow:hidden;
    border-radius:0;
}

.black-button {
    background: #000;
    color: #fff;
    border-colo:#000;
}

.outline-button {
    border: 1px solid;
    background: transparent;
}

.outline-button.black-button {
    color: #000;
}

/*rating type*/
/* Rating Star Widgets Style */
.rating-stars ul {
    list-style-type: none;
    padding: 0;

    -moz-user-select: none;
    -webkit-user-select: none;
}

.rating-stars ul>li.star {
    display: inline-block;
    cursor: pointer;

}

/* Idle State of the stars */
.rating-stars ul>li.star>i {
    font-size: 2.5em;
    /* Change the size of the stars */
    /* color: #000; */
    color: #fff;
    /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul>li.star.hover>i {
    color: var(--color-orange);
}

/* Selected state of the stars */
.rating-stars ul>li.star.selected>i {
    color: var(--color-orange);
    font-weight: 900;
}

/*end rating type*/
.arrow {
    position: absolute;
    top: calc(50% + -30px);
    display: block;
    cursor:pointer;
    z-index:999;
}

.prev-arrow {
    left: 1%;
}

.next-arrow {
    right: 1%;
}

.fullblack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index:9999;
}

.abs-logo {
    position: absolute;
    top: -30vh;
    width: 100%;
}

.term-text {
  cursor:pointer;
}

.column-right.col-md-12 {
    box-shadow: inset 0px 0px 0px 20px #fff;
}

select {
    display: block;
    width: 80%;
    border: none;
    padding: 6px 0;
    border-bottom: 1px solid #000;
    background: transparent;
    border-radius:0;
}

::placeholder {
  color: #fff;
  text-shadow: 1px 1px #000;
  font-weight: 900;
}

/* Customize the label (the checkbox-container) */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  width: 100%;
  max-width: 80%;
  margin: 10px auto;
  -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;
  left: 0;
  height: 21px;
  width: 21px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #000;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

/* Create the checkmark/indicator (hidden when not checked) */
.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 {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.returnhome {
    position: fixed;
    top: 0px;
    right: 30px;
    font-size: 70px;
    font-weight: 300;
    color: #000;
}

.terms {
    width: 80%;
    margin: 0 auto;
}

.term-text {
    text-align: left;
    font-size: 13px;
    line-height:15px;
}

.invalid, .invalid::placeholder, .invalid+.checkmark {
    border-color: #cb0c0c !important;
}

select.invalid {
    color:#cb0c0c;
}

.arrow img {
    height: 36px;
}

a.languageswitch {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 0.8rem;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 39px;
    background: #131313;
    font-weight: 600;
}

.vh-100 {
    min-height: 800px !important;
}

body {
    overflow-y: auto !important;
}

.background-image {
    min-height: 100% !important;
}