/* MEDIA QUERY Constants */
/*costanti device*/
/*IPHONE Portrait and Landscape */
/*
PASTE THIS:
@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2){

}*/
/*TABLET Portrait and Landscape*/
/*
PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2){

}*/
/*TABLET Portrait*/
/*
PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {

}*/
/*TABLET Landscape*/
/*
PASTE THIS:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {

}*/
.bkgMain {
  background-color: #251163;
}

.bkgMain button {
  color: #fff;
}

.bkgSecond {
  background-color: #DB582E;
}

.bkgSecond button {
  color: #fff;
}

.bkgLC {
  background-color: #EF3845;
}

.bkgHF {
  background-color: #8D58A4;
}

.bkgHF.inverse {
  background-color: #fff;
  border: 2px solid #8D58A4;
  color: #8D58A4;
}

.bkgWE {
  background-color: #418CCB;
}

.bkgWE.inverse {
  border: 2px solid #418CCB;
  background-color: #fff;
  color: #418CCB;
}

.bkgST {
  background-color: #F68632;
}

.bkgGL {
  background-color: #5CBA47;
}

.tooltip-main {
  border-radius: 0 !important;
}

body {
  color: #231F20;
  margin-left: 4rem;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  body {
    margin-left: 0px;
  }
}

h1, h2, h3, h4, h5, h6, p, div, span, input {
  font-family: 'Roboto', sans-serif;
}

h2 {
  margin-bottom: 20px;
}

img {
  width: 100%;
}

.bkgLighter {
  background-color: #F9F9F9;
}

.bkgLighter .studentList.GL thead {
  background-color: #F1F1F1;
}

.bkgLighter .studentList.GL thead th {
  background-color: #F9F9F9 !important;
}

.bkgLighter .studentList.ST thead {
  background-color: #F1F1F1;
}

.bkgLighter .studentList.ST thead th {
  background-color: #F9F9F9 !important;
}

.max400 {
  height: 450px;
  overflow: auto;
}

.max500 {
  height: 550px;
  overflow-y: auto;
  padding: 0 5%;
}

.max400::-webkit-scrollbar-track, .max500::-webkit-scrollbar-track, .helpArea::-webkit-scrollbar-track {
  background-color: #F9F9F9;
  border: 1px solid #BCBCBC;
}

.max400::-webkit-scrollbar, .max500::-webkit-scrollbar, .helpArea::-webkit-scrollbar {
  width: 5px;
  background-color: #F9F9F9;
  border: 1px solid #BCBCBC;
}

.max400::-webkit-scrollbar-thumb, .max500::-webkit-scrollbar-thumb, .helpArea::-webkit-scrollbar-thumb {
  background-color: #BCBCBC;
  border: 2px solid #BCBCBC;
}

.status {
  width: 3rem;
  height: 3rem;
  padding: 0;
}

.status .statPending {
  background-color: #F3B31D;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /*&:hover{
            background-color: #fff;
            svg{
                fill:$midColor;
            }
        }*/
}

.status .statPending svg {
  fill: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 6px;
}

.status .statApproved {
  font-size: 35px;
  color: #fff;
  padding: 7px;
  background-color: #31C04E;
}

.status .statDenied {
  font-size: 35px;
  color: #fff;
  padding: 7px;
  background-color: #e93e25;
}

.status .sendRequest {
  background-color: #F3B31D;
  border: 2px solid #F3B31D;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 7px;
  cursor: pointer;
}

.status .sendRequest span {
  font-size: 35px;
  color: #fff;
}

.status .sendRequest .statText, .status .sendRequest span {
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.status .sendRequest:hover {
  background-color: #fff;
}

.status .sendRequest:hover .statText, .status .sendRequest:hover span {
  color: #F3B31D;
}

.deleteWE {
  position: absolute;
  top: 7px;
  font-size: 15px;
  right: -24px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.deleteWE span {
  background-color: #e93e25;
  border-radius: 50%;
  color: #fff;
  border: 2px solid #e93e25;
  padding: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.deleteWE:hover span {
  background-color: #fff;
  color: #e93e25;
}

.mainMenu {
  position: fixed;
  top: 0;
  bottom: 0%;
  left: 0;
  width: 4rem;
  background-color: #231F20;
  padding-top: 30px;
  padding-bottom: 30px;
}

.mainMenu .navItem {
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  text-align: center;
  background-color: #231F20;
  border: 3px solid #231F20;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.mainMenu .navItem span {
  font-size: 20px;
  color: #fff;
  padding: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.mainMenu .navItem:hover {
  background-color: #F1F1F1;
}

.mainMenu .navItem:hover span {
  color: #231F20;
  border: 2px solid #231F20;
}

.mainMenu .navItem.active {
  background-color: #F1F1F1;
}

.mainMenu .navItem.active span {
  color: #231F20;
  border: 2px solid #231F20;
}

.mainMenu .navItem.logOutButton {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #161414;
  border: 3px solid #161414;
}

.mainMenu .navItem.logOutButton:hover {
  background-color: #BCBCBC;
}

.mainMenu .navItem.logOutButton:hover span {
  color: #231F20;
  border: 2px solid #231F20;
}

.mainMenu .navItem.closeMenu span {
  border-radius: 0;
}

.mainMenu .navItem.closeMenu:hover {
  background-color: transparent;
}

.mainMenu .navItem.closeMenu:hover span {
  color: #fff;
  border: 2px solid #fff;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .mainMenu {
    left: auto;
    right: 0;
    z-index: 9999;
    width: 60%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .mainMenu .navItem {
    width: 100%;
  }
  .mainMenu .navItem span {
    margin: 0px 10px;
  }
  .mainMenu .navItem p {
    margin-bottom: 0px;
  }
  .mainMenu .navItem.active {
    color: #231F20;
  }
  .mainMenu.opened {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.langFlag {
  width: 25px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-shadow: 0px 2px 5px #0000002e;
          box-shadow: 0px 2px 5px #0000002e;
  border: 3px solid #ffffff;
}

.langFlag.selectedLang {
  border: 3px solid #251163;
}

.loginBkg {
  background-image: url(../images/bkg-login2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

.logoDash {
  width: 20%;
  margin: auto;
  display: block;
}

.logoPersonalDash {
  width: 15%;
  margin: auto;
  display: block;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .logoPersonalDash {
    width: 80%;
    margin-left: 0;
  }
}

#loginForm {
  max-width: 500px;
  display: block;
  margin-right: auto;
  /* border-radius: 0 0 25px 0;*/
}

#loginForm h2 {
  text-transform: uppercase;
  font-size: 60px;
  color: #231F20;
}

.formRow label {
  display: block;
  text-align: left;
  text-transform: capitalize;
}

.formRow input {
  width: 100%;
  padding: 10px;
  border: 2px solid #f1f1f1;
  margin-bottom: 20px;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: transparent;
}

.formRow input:focus {
  border-radius: 0;
  outline: 2px solid #939192;
  border: none;
}

.formRow #userLoginSubmit {
  background-color: #f1f1f1;
  color: #231F20;
  text-transform: uppercase;
}

.formRow #userLoginSubmit:hover {
  background-color: #fff;
}

#profilePicture {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.formResponse {
  color: #d51515;
  font-size: 18px;
  text-transform: capitalize;
}

.titleDash {
  max-width: 500px;
  display: block;
  margin-left: auto;
  color: #fff;
  text-align: justify;
  text-transform: uppercase;
}

.titleDash h2 {
  top: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 60px;
  text-shadow: 0px 5px 10px #00000057;
}

#groupList > table .col {
  font-size: 9px;
}

.subTitles {
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.subTitles.LC {
  color: #EF3845;
}

.subTitles.GL {
  color: #5CBA47;
}

.subTitles.ST {
  color: #F68632;
}

.subTitles.WE {
  color: #418CCB;
}

.subTitles.HF {
  color: #8D58A4;
}

.buttonStyle {
  display: block;
  position: relative;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  border: 1px solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  margin: auto;
  max-width: 13em;
  margin-top: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
  cursor: pointer;
}

.buttonStyle .iconLink {
  font-size: 23px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-left: 2px solid;
  padding: 6px;
  width: 44px;
  margin-left: auto;
  max-height: 44px;
}

.buttonStyle .infoProgram {
  margin: auto;
  font-size: 14px;
}

.buttonStyle.LC {
  background-color: #EF3845;
  border-color: #EF3845;
}

.buttonStyle.LC:hover {
  background-color: #fff;
  color: #EF3845;
}

.buttonStyle.GL {
  background-color: #5CBA47;
  border-color: #5CBA47;
}

.buttonStyle.GL:hover {
  background-color: #fff;
  color: #5CBA47;
}

.buttonStyle.WE {
  background-color: #418CCB;
  border-color: #418CCB;
}

.buttonStyle.WE:hover {
  background-color: #fff;
  color: #418CCB;
}

.buttonStyle.HF {
  background-color: #8D58A4;
  border-color: #8D58A4;
}

.buttonStyle.HF:hover {
  background-color: #fff;
  color: #8D58A4;
}

.buttonStyle.ST {
  background-color: #F68632;
  border-color: #F68632;
  font-weight: 500;
}

.buttonStyle.ST:hover {
  background-color: #fff;
  color: #F68632;
}

.buttonStyle.ST span {
  font-size: 35px;
  vertical-align: middle;
  padding-left: 10px;
}

.buttonStyle.ST2 {
  background-color: #F16824;
  border: 2px solid #F16824;
  max-width: 100%;
}

.buttonStyle.ST2 .iconLink {
  background-color: #fff;
  color: #F16824;
}

.buttonStyle.ST2:hover {
  background-color: #fff;
  color: #F16824;
}

.buttonStyle.GL {
  background-color: #5CBA47;
  border-color: #5CBA47;
}

.buttonStyle.GL:hover {
  background-color: #fff;
  color: #5CBA47;
}

.dashHeader {
  color: #fff;
  text-align: center;
}

.dashHeader h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.dashHeader p {
  margin-bottom: 0;
}

.dashHeader a {
  color: #fff;
}

.modal-content {
  border-radius: 0;
  border: none;
}

.modal-content .modal-header {
  border: none;
}

.modal-content .modal-header .modal-title {
  text-align: center;
  width: 100%;
  font-size: 48px;
  font-weight: 900;
}

.modal-content .modal-header .close {
  border: 0;
  background-color: transparent;
  font-size: 32px;
  outline: none !important;
}

.modal-content .modal-header.LC .close {
  color: #EF3845;
}

.modal-content .modal-header.GL .close {
  color: #5CBA47;
}

.modal-content .modal-header.WE .close {
  color: #418CCB;
}

.modal-content .modal-header.HF .close {
  color: #8D58A4;
}

.modal-content.WE .modal-title {
  color: #418CCB;
}

.modal-content.WE .map {
  background-color: #418CCB;
  border: 1px solid #418CCB;
}

.modal-content.WE .map:hover {
  background-color: #fff;
}

.modal-content.WE .map:hover span {
  color: #418CCB;
}

.modal-content.HF .modal-title {
  color: #8D58A4;
}

.modal-content.HF .map {
  background-color: #8D58A4;
  border: 1px solid #8D58A4;
}

.modal-content.HF .map:hover {
  background-color: #fff;
}

.modal-content.HF .map:hover span {
  color: #8D58A4;
}

.viaggi {
  overflow-x: auto;
}

table {
  width: 100%;
  margin: auto;
  text-align: center;
}

table thead {
  color: #fff;
  text-transform: uppercase;
}

table thead td {
  padding: 20px 15px;
  border-bottom: 1px solid;
  border-left: 2px solid #fff !important;
  font-weight: 500;
  font-size: 15px;
}

table thead td:last-child {
  background-color: #F9F9F9;
  border: none !important;
}

table tbody td {
  padding: 10px;
  border-bottom: 1px solid;
  border-left: 1px solid #F9F9F9 !important;
  background-color: #fff;
}

table tbody td:last-child {
  border-color: #fff !important;
}

table tbody tr:last-child td {
  border-bottom: none !important;
}

table .nextButton {
  display: block;
  position: relative;
  padding: 15px;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  border: 1px solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

table.LC thead {
  background-color: #F36F62;
}

table.LC td {
  border-bottom: 2px solid #F36F62 !important;
}

table.LC tbody td:last-child {
  background-color: #EF3845;
}

table.LC .nextButton {
  background-color: #EF3845;
  border-color: #EF3845;
}

table.LC .nextButton:hover {
  background-color: #fff;
}

table.LC .nextButton:hover span {
  color: #EF3845;
}

table.GL thead {
  background-color: #B5D33C;
}

table.GL td {
  border-bottom: 2px solid #B5D33C !important;
}

table.GL tbody td:last-child {
  background-color: #5CBA47;
}

table.GL .nextButton {
  background-color: #5CBA47;
  border-color: #5CBA47;
}

table.GL .nextButton:hover {
  background-color: #fff;
}

table.GL .nextButton:hover span {
  color: #5CBA47;
}

table.WE thead {
  background-color: #51C8EA;
}

table.WE td {
  border-bottom: 2px solid #51C8EA !important;
}

table.WE tbody td:last-child {
  background-color: #418CCB;
}

table.WE .nextButton {
  background-color: #418CCB;
  border-left: 3px solid;
  border-color: #418CCB;
}

table.WE .nextButton:hover {
  background-color: #fff;
}

table.WE .nextButton:hover span {
  color: #418CCB;
}

table.HF thead {
  background-color: #AE62A7;
}

table.HF td {
  border-bottom: 2px solid #AE62A7 !important;
}

table.HF tbody td:last-child {
  background-color: #8D58A4;
}

table.HF .nextButton {
  background-color: #8D58A4;
  border-left: 3px solid;
  border-color: #8D58A4;
}

table.HF .nextButton:hover {
  background-color: #fff;
}

table.HF .nextButton:hover span {
  color: #8D58A4;
}

table.ST thead {
  background-color: #FDB949;
}

table.ST td {
  border-bottom: 2px solid #FDB949 !important;
}

table.ST tbody td:last-child {
  background-color: #F68632;
}

table.ST .nextButton {
  background-color: #F68632;
  border-color: #F68632;
}

table.ST .nextButton:hover {
  background-color: #fff;
}

table.ST .nextButton:hover span {
  color: #F68632;
}

.viaggiPage {
  padding: 60px;
  overflow: auto;
}

.viaggiPage table thead td:last-child {
  background-color: #fff;
}

.viaggiPage tbody td {
  border-bottom: 2px solid;
  border-left: 1px solid #fff !important;
}

.viaggiPage .WE, .viaggiPage .HF {
  background-color: #fff;
}

.viaggiPage .WE.studentList thead, .viaggiPage .HF.studentList thead {
  background-color: #fff;
}

.viaggiPage .WE.studentList thead th, .viaggiPage .HF.studentList thead th {
  background-color: #fff !important;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .viaggiPage {
    padding: 20px;
  }
}

.studentList {
  overflow: auto;
  /*
table          { overflow: auto; height: 100px; width: 240px; }
table thead th { position: sticky; top: 0; z-index: 1; }
table tbody th { position: sticky; left: 0; }*/
}

.studentList thead {
  background-color: #fff;
}

.studentList thead th {
  text-align: left;
  color: #231F20;
  border: none !important;
  text-transform: none;
  font-weight: 400;
  padding: 15px 0px;
  background-color: #fff !important;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.studentList tbody tr {
  border: 2px solid #F1F1F1;
}

.studentList tbody tr td {
  text-align: left;
  border: none !important;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 5;
}

.studentList .nextButton {
  text-align: center;
  width: 3rem;
  padding: 8px;
}

.studentList.WE thead {
  background-color: #F1F1F1;
}

.studentList.WE thead th {
  background-color: #F9F9F9 !important;
  color: #418CCB;
  text-transform: uppercase;
}

.studentList.WE tbody tr {
  border: 3px solid #418CCB;
}

.studentList.HF thead {
  background-color: #F1F1F1;
}

.studentList.HF thead th {
  background-color: #F9F9F9 !important;
  color: #8D58A4;
  text-transform: uppercase;
}

.studentList.HF tbody tr {
  border: 3px solid #8D58A4;
}

.fieldStyle {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.fieldStyle label {
  font-size: 15px;
  margin: 10px 0;
}

.fieldStyle #privacyAccept {
  width: auto;
}

.fieldStyle .privacy {
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}

.fieldStyle .inputStyle {
  position: relative;
}

.fieldStyle .inputStyle input, .fieldStyle .inputStyle textarea, .fieldStyle .inputStyle select {
  width: 100%;
  padding: 8px;
  border-radius: 0px;
  border: 2px solid #F1F1F1;
  position: relative;
  padding-left: 40px;
  outline: none !important;
}

.fieldStyle .inputStyle input::-webkit-input-placeholder, .fieldStyle .inputStyle textarea::-webkit-input-placeholder, .fieldStyle .inputStyle select::-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  color: #BCBCBC;
}

.fieldStyle .inputStyle input:-ms-input-placeholder, .fieldStyle .inputStyle textarea:-ms-input-placeholder, .fieldStyle .inputStyle select:-ms-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  color: #BCBCBC;
}

.fieldStyle .inputStyle input::-ms-input-placeholder, .fieldStyle .inputStyle textarea::-ms-input-placeholder, .fieldStyle .inputStyle select::-ms-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  color: #BCBCBC;
}

.fieldStyle .inputStyle input::placeholder, .fieldStyle .inputStyle textarea::placeholder, .fieldStyle .inputStyle select::placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  color: #BCBCBC;
}

.fieldStyle .inputStyle textarea, .fieldStyle .inputStyle select {
  padding-left: 10px;
}

.fieldStyle .inputStyle span {
  color: #BCBCBC;
  position: absolute;
  top: 14px;
  bottom: 0;
  left: 14px;
  z-index: 999;
  font-size: 18px;
}

.fieldStyle .inputStyle .type {
  text-align: center;
  height: 44px;
  padding: 7px 15px;
  font-size: 22px;
  color: #fff;
  font-weight: 900;
}

.fieldStyle .inputStyle .type.we {
  background-color: #418CCB;
}

.fieldStyle .inputStyle .type.hf {
  background-color: #8D58A4;
}

.fieldStyle .inputStyle .view {
  height: 44px;
  background-color: #BCBCBC;
  border: 1px solid #BCBCBC;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle .view span {
  font-size: 18px;
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  padding: 0px 13px;
  left: 0;
  right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle .view:hover {
  background-color: #fff;
  cursor: pointer;
}

.fieldStyle .inputStyle .view:hover span {
  color: #BCBCBC;
}

.fieldStyle .inputStyle .map {
  padding: 13px;
  height: 44px;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.fieldStyle .inputStyle .map span {
  position: relative;
  left: 0;
  top: 0;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle .status {
  width: 44px;
  height: 44px;
}

.fieldStyle .inputStyle .status .statPending {
  width: 44px;
  height: 44px;
}

.fieldStyle .inputStyle .status .statApproved {
  padding: 7px 9px;
  width: 44px;
  height: 44px;
  text-align: center;
}

.fieldStyle .inputStyle .status .statApproved span {
  position: relative;
  font-size: 28px;
  color: #fff;
  width: 44px;
  top: 0;
  left: 0;
}

.fieldStyle .inputStyle.contact .call span, .fieldStyle .inputStyle.contact .mail span {
  position: relative;
  top: 0;
  left: auto;
}

.fieldStyle .inputStyle.contact.GL input {
  background-color: #5CBA47;
  border: 2px solid #5CBA47;
  color: #fff;
}

.fieldStyle .inputStyle.contact.GL span {
  color: #fff;
}

.fieldStyle .inputStyle.contact.GL .buttonStyle {
  background-color: #fff;
  border: 2px solid #5CBA47;
  padding: 9px;
  border-left: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle.contact.GL .buttonStyle span {
  color: #5CBA47;
  font-size: 23px;
}

.fieldStyle .inputStyle.contact.GL .buttonStyle:hover {
  background-color: #3C9D47;
}

.fieldStyle .inputStyle.contact.GL .buttonStyle:hover span {
  color: #fff;
}

.fieldStyle .inputStyle.contact.WE input {
  background-color: #418CCB;
  border: 2px solid #418CCB;
  color: #fff;
}

.fieldStyle .inputStyle.contact.WE span {
  color: #fff;
}

.fieldStyle .inputStyle.contact.WE .buttonStyle {
  background-color: #fff;
  border: 2px solid #418CCB;
  padding: 9px;
  border-left: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle.contact.WE .buttonStyle span {
  color: #418CCB;
  font-size: 23px;
}

.fieldStyle .inputStyle.contact.WE .buttonStyle:hover {
  background-color: #1F67B1;
}

.fieldStyle .inputStyle.contact.WE .buttonStyle:hover span {
  color: #fff;
}

.fieldStyle .inputStyle.contact.HF input {
  background-color: #8D58A4;
  border: 2px solid #8D58A4;
  color: #fff;
}

.fieldStyle .inputStyle.contact.HF span {
  color: #fff;
}

.fieldStyle .inputStyle.contact.HF .buttonStyle {
  background-color: #fff;
  border: 2px solid #8D58A4;
  padding: 9px;
  border-left: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fieldStyle .inputStyle.contact.HF .buttonStyle span {
  color: #8D58A4;
  font-size: 23px;
}

.fieldStyle .inputStyle.contact.HF .buttonStyle:hover {
  background-color: #6750A1;
}

.fieldStyle .inputStyle.contact.HF .buttonStyle:hover span {
  color: #fff;
}

.fieldStyle .changePass {
  text-decoration: none;
  font-family: 'Roboto Condensed';
  text-align: right;
  width: 100%;
  display: block;
  padding-top: 20px;
  color: #231F20;
}

.WE .map {
  background-color: #418CCB;
  border: 1px solid #418CCB;
}

.WE .map:hover {
  background-color: #fff;
}

.WE .map:hover span {
  color: #418CCB;
}

.HF .map {
  background-color: #8D58A4;
  border: 1px solid #8D58A4;
}

.HF .map:hover {
  background-color: #fff;
}

.HF .map:hover span {
  color: #8D58A4;
}

.dashUser .userImg {
  padding-bottom: 60%;
  width: 60%;
  margin: auto;
}

.saveButton {
  background-color: #231F20;
  border: 1px solid #231F20;
  color: #fff;
  text-align: right;
  font-size: 20px;
  float: right;
  margin-top: 20px;
  padding: 10px 50px;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.saveButton:hover {
  background-color: #fff;
  color: #231F20;
}

.updateButton {
  background-color: #231F20;
  border: 1px solid #231F20;
  color: #fff;
  text-align: right;
  font-size: 18px;
  margin-top: 20px;
  display: inline-block;
  padding: 10px 30px;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.updateButton:hover {
  background-color: #fff;
  color: #231F20;
}

.fieldTitle {
  position: relative;
}

.fieldTitle:after {
  content: "";
  background-color: #231F20;
  height: 1px;
  width: 100%;
  vertical-align: middle;
  right: 0;
  margin-top: 10px;
  position: relative;
}

.fieldTitle h5 {
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  font-weight: 300;
  background-color: #fff;
  white-space: nowrap;
  margin-right: 35px;
  vertical-align: middle;
}

.userImg {
  background-image: url(../images/user.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 100%;
  padding-bottom: 100%;
  border: 3px solid #231F20;
}

.notRow {
  background-color: #F1F1F1;
  text-align: center;
  padding: 15px 10px;
  margin: 0;
  border-radius: 50px;
  position: relative;
  margin-bottom: 10px;
  vertical-align: middle;
}

.notRow p {
  margin-bottom: 0;
  color: #BCBCBC;
}

.notRow span {
  font-size: 25px;
  opacity: 0;
  margin-right: 10px;
}

.notRow svg {
  width: 25px;
  position: absolute;
  left: -11px;
  bottom: 0;
  fill: #F1F1F1;
}

.notRow.new p {
  color: #fff;
}

.notRow.new.LC {
  background-color: #F36F62;
}

.notRow.new.LC svg {
  fill: #F36F62;
}

.notRow.new.GL {
  background-color: #B5D33C;
}

.notRow.new.GL svg {
  fill: #B5D33C;
}

.notRow.new.WE {
  background-color: #51C8EA;
}

.notRow.new.WE svg {
  fill: #51C8EA;
}

.notRow.new.HF {
  background-color: #AE62A7;
}

.notRow.new.HF svg {
  fill: #AE62A7;
}

.notRow.new.ST {
  background-color: #FDB949;
}

.notRow.new.ST svg {
  fill: #FDB949;
}

.notRow.new span {
  opacity: 1;
}

.notRow.WE {
  background-color: #F1F1F1;
}

.notPage .notRow p {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .notPage .notRow p {
    display: block;
  }
}

.notList {
  margin-bottom: 80px;
}

.we-hf-tab .approveRow {
  height: 3rem;
}

.we-hf-tab .approveRow .apprNotice {
  width: 4rem;
  background-color: #EF3845;
  height: 4rem;
  color: #fff;
  font-size: 37px;
  font-weight: 900;
  text-align: center;
  padding: 0;
}

.we-hf-tab .approveRow .apprType {
  font-size: 28px;
  color: #fff;
  font-weight: 900;
}

.we-hf-tab .approveRow .apprStatus {
  width: 4rem;
  background-color: #BCBCBC;
  height: 4rem;
  padding: 0;
}

.we-hf-tab .approveRow .apprStatus .statPending {
  background-color: #BCBCBC;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /*&:hover{
                    background-color: #fff;
                    svg{
                        fill:$midColor;
                    }
                }*/
}

.we-hf-tab .approveRow .apprStatus .statPending svg {
  fill: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 6px;
}

.we-hf-tab .approveRow td {
  border: 5px solid #F9F9F9 !important;
}

.we-hf-tab .approveRow.we .apprType {
  background-color: #418CCB;
}

.we-hf-tab .approveRow.hf .apprType {
  background-color: #8D58A4;
}

.we-hf-tab .approveRow.st .apprType {
  background-color: #F68632;
  font-size: 18px;
  font-weight: 400;
}

.we-hf-tab .approveRow .statApproved {
  display: none;
  font-size: 35px;
  color: #fff;
}

.we-hf-tab .approveRow.approved .apprNotice {
  opacity: 0;
}

.we-hf-tab .approveRow.approved .statApproved {
  display: block;
}

.we-hf-tab .approveRow.approved .statPending {
  display: none;
}

.requests .nav-item {
  width: 50%;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.requests .nav-item .nav-link {
  border-radius: 0;
  color: #418CCB;
  background-color: #fff;
  font-size: 26px;
  font-weight: 600;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.requests .nav-item .nav-link.active {
  color: #fff;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .requests .nav-item .nav-link {
    font-size: 21px;
  }
}

.requests .we-hf-tab .approveRow td {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.requests .we-hf-tab .approveRow td:last-child {
  background-color: transparent;
}

.requests .we-hf-tab .approveRow td:last-child a {
  text-decoration: none;
  color: #fff;
}

.requests .we-hf-tab .approveRow td .statPending {
  background-color: #F3B31D;
  height: 100%;
}

.requests .we-hf-tab .approveRow td .statApproved {
  background-color: #31C04E;
  height: 100%;
  text-align: center;
  padding: 12px 0;
}

.requests .we-hf-tab tr td {
  text-align: left;
  padding: 10px 15px;
}

.requests .we-hf-tab tr td .view {
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.requests .we-hf-tab tr td .view span {
  font-size: 25px;
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  padding: 18px 0px;
  left: 0;
  right: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.requests .we-hf-tab tr td .view:hover {
  background-color: #fff;
  cursor: pointer;
}

.requests .we-hf-tab thead tr td {
  border-left: none !important;
}

.requests .we-hf-tab thead tr td:last-child {
  background-color: transparent;
  width: 4rem;
}

.requests.WE {
  background-color: #418CCB;
}

.requests.WE .nav-link {
  color: #8D58A4;
  border: 5px solid #418CCB;
}

.requests.WE .nav-link.active {
  background-color: #418CCB;
  color: #fff;
}

.requests.WE .view {
  background-color: #418CCB;
}

.requests.WE .view:hover span {
  color: #418CCB;
}

.requests.WE .approveRow td {
  border: 5px solid #418CCB !important;
}

.requests.HF {
  background-color: #8D58A4;
}

.requests.HF .nav-link {
  color: #418CCB;
  border: 5px solid #8D58A4;
}

.requests.HF .nav-link.active {
  background-color: #8D58A4;
  color: #fff;
}

.requests.HF .view {
  background-color: #8D58A4;
}

.requests.HF .view:hover span {
  color: #8D58A4;
}

.requests.HF .approveRow td {
  border: 5px solid #8D58A4 !important;
}

.requests.wePage {
  border: 3px solid #F1F1F1;
}

.requests.wePage #pend-tab {
  color: #F3B31D;
}

.requests.wePage #accept-tab {
  color: #31C04E;
}

.requests.wePage #refuse-tab {
  color: #e93e25;
}

.requests.wePage .nav-link {
  background-color: #F1F1F1;
  border: none;
}

.requests.wePage .nav-link.active {
  background-color: #fff;
  border: none;
}

.requests.wePage .nav-tabs {
  border: none;
}

.requests.wePage .status div {
  height: 100%;
  padding: 6px;
  font-size: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.requests .tab-content {
  overflow: auto;
}

.imageFrontView {
  background-image: url("../images/hf-test.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 250px;
}

.imageFrontView .updateButton {
  position: absolute;
  bottom: 0;
  right: 0;
}

.imageFrontView.we {
  background-image: url("../images/we-test.jpg");
}

.statChange {
  position: relative;
  z-index: 9999;
  cursor: pointer;
}

.statChange input {
  cursor: pointer;
}

.chooseStat {
  padding: 15px 0px;
  background-color: #fff;
  border: 1px solid #F1F1F1;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 0;
  height: 0px;
  cursor: pointer;
}

.chooseStat .inputStyle {
  margin-bottom: -1px;
  cursor: pointer;
}

.chooseStat .inputStyle input {
  background-color: #fff;
  border: 0;
  border-bottom: 2px solid #F9F9F9;
  border-top: 2px solid #F9F9F9;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.chooseStat .inputStyle .statPending {
  background-color: #BCBCBC;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.chooseStat .inputStyle .statApproved {
  background-color: #BCBCBC;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.chooseStat .inputStyle:hover input, .chooseStat .inputStyle.selected input {
  background-color: #F1F1F1;
  border-color: #F1F1F1;
}

.chooseStat .inputStyle:hover .statPending, .chooseStat .inputStyle.selected .statPending {
  background-color: #F3B31D;
}

.chooseStat .inputStyle:hover .statApproved, .chooseStat .inputStyle.selected .statApproved {
  background-color: #31C04E;
}

.chooseStat.clickedStat {
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 125px;
}

.docs .fieldStyle .inputStyle .status {
  width: auto;
}

.docs .fieldStyle .inputStyle .status .statPending, .docs .fieldStyle .inputStyle .status .statApproved {
  width: 180px;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  text-align: center;
}

.docs .fieldStyle .inputStyle .status span {
  position: relative;
  font-size: 15px;
  color: #fff;
  top: 0;
  padding: 5px;
  border: 2px solid #fff;
  border-radius: 50%;
  left: 5px;
}

.docs .fieldStyle .inputStyle .status .nextButton {
  display: block;
  position: relative;
  padding: 9px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border: 1px solid;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 180px;
  text-align: center;
  height: 44px;
}

.docs .fieldStyle .inputStyle .status.LC .nextButton {
  background-color: #EF3845;
  border-color: #EF3845;
}

.docs .fieldStyle .inputStyle .status.LC .nextButton:hover {
  background-color: #fff;
  color: #EF3845;
}

.docs .fieldStyle .inputStyle .status.LC .nextButton:hover span {
  color: #EF3845;
}

.docs .fieldStyle .inputStyle .status.GL .nextButton {
  background-color: #5CBA47;
  border-color: #5CBA47;
}

.docs .fieldStyle .inputStyle .status.GL .nextButton:hover {
  background-color: #fff;
  color: #5CBA47;
}

.docs .fieldStyle .inputStyle .status.GL .nextButton:hover span {
  color: #5CBA47;
}

.docs .fieldStyle .inputStyle .status.ST .nextButton {
  background-color: #F68632;
  border-color: #F68632;
}

.docs .fieldStyle .inputStyle .status.ST .nextButton:hover {
  background-color: #fff;
  color: #F68632;
}

.docs .fieldStyle .inputStyle .status.ST .nextButton:hover span {
  color: #F68632;
}

.docs .fieldStyle .inputStyle .status.WE .nextButton {
  background-color: #418CCB;
  border-color: #418CCB;
}

.docs .fieldStyle .inputStyle .status.WE .nextButton:hover {
  background-color: #fff;
  color: #418CCB;
}

.docs .fieldStyle .inputStyle .status.WE .nextButton:hover span {
  color: #418CCB;
}

.docs .fieldStyle .inputStyle .status.HF .nextButton {
  background-color: #8D58A4;
  border-color: #8D58A4;
}

.docs .fieldStyle .inputStyle .status.HF .nextButton:hover {
  background-color: #fff;
  color: #8D58A4;
}

.docs .fieldStyle .inputStyle .status.HF .nextButton:hover span {
  color: #8D58A4;
}

.travelImg {
  background-image: url("../images/dublino.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.travelImg .countDown {
  color: #fff;
}

.travelImg .countDown .countNumb {
  font-size: 50px;
  font-family: 'Roboto Condensed';
  font-weight: 800;
  padding: 0px 6px;
}

.travelImg .countDown .countNumb.countSepar {
  vertical-align: top;
}

.travelImg .countDown small {
  font-family: 'Roboto Condensed';
  font-weight: 800;
  text-transform: uppercase;
  margin-top: -10px;
  display: block;
}

.travelImg .travelCity h2 {
  font-size: 5.3em;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto Condensed';
  font-weight: 300;
}

.travelImg .travelStatus {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #F3B31D;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.travelImg .date {
  font-size: 20px;
  padding: 10px 20px;
  border: 2px solid #FDB949;
}

.travelImg .date span {
  vertical-align: middle;
}

.travelImg .date.start {
  color: #fff;
  background-color: #FDB949;
}

.travelImg .date.end {
  color: #FDB949;
}

.travelImg .fieldTitle h5 {
  color: #fff;
  font-weight: 900;
  background-color: transparent;
}

.travelImg .fieldTitle:after {
  background-color: #ffffff;
}

.mapStyle {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.mapStyle .chooseElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0;
  height: 4rem;
  font-size: 24px;
  font-weight: 800;
}

.mapStyle .chooseElement .apprType {
  width: 100%;
}

.mapStyle .chooseElement .status {
  width: 5rem;
  height: auto;
}

.mapStyle .chooseElement.WE {
  background-color: #418CCB;
  color: #fff;
}

.mapStyle .chooseElement.HF {
  background-color: #8D58A4;
  color: #fff;
}

.mapStyle .we-hf {
  position: absolute;
  bottom: 0;
  left: -8px;
  right: -8px;
}

.chooseElement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.chooseElement .apprType {
  width: 100%;
}

.chooseElement .status {
  width: 4rem;
  height: auto;
}

.chooseElement .status .statApproved {
  padding: 11px;
}

.chooseElement.WE {
  background-color: #418CCB;
  color: #fff;
}

.chooseElement.HF {
  background-color: #8D58A4;
  color: #fff;
}

.we-hf {
  position: relative;
}

.wExpsRow {
  padding: 15px;
  color: #fff;
  text-transform: uppercase;
  background-color: #418CCB;
}

.wExpsRow .inputStyle input, .wExpsRow .inputStyle textarea, .wExpsRow .inputStyle select {
  background-color: #418CCB;
  color: #fff;
  border: 3px solid #fff;
}

.hfRoom label {
  color: #fff;
  text-transform: uppercase;
}

.hfRoom .status {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
}

.hfRoom .status .statText {
  padding: 5px 15px;
  font-weight: 500;
  font-size: 16px !important;
}

.hfRoom .status svg {
  display: inline-block;
  width: 3rem;
}

#helpButton, #helpClose {
  position: fixed;
  top: 50px;
  right: 50px;
  background-color: #231F20;
  border: 3px solid #231F20;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 4px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

#helpButton span, #helpClose span {
  color: #fff;
  font-size: 35px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#helpButton:hover, #helpClose:hover {
  background-color: #fff;
}

#helpButton:hover span, #helpClose:hover span {
  color: #231F20;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  #helpButton, #helpClose {
    right: auto;
    left: 10px;
    top: 6px;
    width: 40px;
    height: 40px;
  }
  #helpButton span, #helpClose span {
    font-size: 25px;
  }
}

.helpArea {
  position: fixed;
  right: 0;
  left: 10%;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(104%);
          transform: translateX(104%);
  opacity: 0.5;
  overflow-y: auto;
}

.helpArea .accordion-item {
  margin-bottom: 20px;
}

.helpArea .accordion-item .accordion-button {
  text-transform: uppercase;
}

.helpArea .accordion-item .accordion-button.collapsed span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.helpArea .accordion-item .accordion-button:after {
  background-image: url('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20"><path fill="#ffffff" d="M0 6c0-0.128 0.049-0.256 0.146-0.354 0.195-0.195 0.512-0.195 0.707 0l8.646 8.646 8.646-8.646c0.195-0.195 0.512-0.195 0.707 0s0.195 0.512 0 0.707l-9 9c-0.195 0.195-0.512 0.195-0.707 0l-9-9c-0.098-0.098-0.146-0.226-0.146-0.354z"></path></svg>');
}

.helpArea .accordion-item span {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 26px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.helpArea .accordion-item .accordion-body p {
  color: #231F20;
  font-size: 15px;
}

.helpArea.LC .accordion-button {
  background-color: #EF3845;
  border: 2px solid #EF3845;
  color: #fff;
}

.helpArea.LC .accordion-button.collapsed {
  background-color: #fff;
  color: #231F20;
  border: 2px solid #F36F62;
}

.helpArea.LC .accordion-button.collapsed:focus {
  background-color: #fff;
  color: #EF3845;
  border: 2px solid #F36F62;
}

.helpArea.LC .accordion-button:focus {
  background-color: #EF3845;
  border-color: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.helpArea.LC .accordion-button:after {
  background-image: url('<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20"><path fill="#ffffff" d="M0 6c0-0.128 0.049-0.256 0.146-0.354 0.195-0.195 0.512-0.195 0.707 0l8.646 8.646 8.646-8.646c0.195-0.195 0.512-0.195 0.707 0s0.195 0.512 0 0.707l-9 9c-0.195 0.195-0.512 0.195-0.707 0l-9-9c-0.098-0.098-0.146-0.226-0.146-0.354z"></path></svg>');
}

.helpArea.opened {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
  .helpArea {
    left: 0;
    right: 10%;
    -webkit-transform: translateX(-104%);
            transform: translateX(-104%);
  }
}

.overlay {
  position: fixed;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-left: 0;
}

.overlay:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.stCard {
  background-color: #418CCB;
  margin-bottom: 25px;
}

.stCard label {
  color: #fff;
}

.stCard .fieldStyle .inputStyle input {
  background-color: #fff;
}

.stCard .status {
  width: 100%;
  height: 100%;
}

.stCard .status div {
  padding: 100% 0;
}

.stCard .status .statApproved {
  font-size: 26px;
  text-align: center;
}

.stCard .nextButton {
  display: block;
  position: relative;
  padding: 6px 20px;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: #1F67B1;
  border: 2px solid #1F67B1;
  cursor: pointer;
}

.stCard .nextButton span {
  font-size: 1.4rem;
  vertical-align: bottom;
  margin-left: 10px;
}

.stCard .nextButton:hover {
  background-color: #fff;
  color: #1F67B1;
}

.stCard .nextButton:hover span {
  color: #1F67B1;
}

.stCard.HF {
  background-color: #8D58A4;
}

.stCard.HF .nextButton {
  background-color: #6750A1;
  border: 2px solid #6750A1;
}

.stCard.HF .nextButton:hover {
  background-color: #fff;
  color: #6750A1;
}

.stCard.HF .nextButton:hover span {
  color: #6750A1;
}

#addRowButton {
  position: fixed;
  bottom: 80px;
  right: 40px;
}

#addRowButton span {
  font-size: 35px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  -webkit-box-shadow: 0px 3px 11px #0006;
          box-shadow: 0px 3px 11px #0006;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

#addRowButton span.WE {
  background-color: #418CCB;
}

#addRowButton span.HF {
  background-color: #8D58A4;
}

#addRowButton span:hover {
  background-color: #fff;
}

#addRowButton span:hover.WE {
  color: #418CCB;
}

#addRowButton span:hover.HF {
  color: #8D58A4;
}

@font-face {
  font-family: "Gotham";
  src: url("/css/font/GothamBook.ttf") format("ttf"), url("/css/font/GothamBook.otf") format("opentype");
}

.studentSubscribe h1, .studentSubscribe h2, .studentSubscribe h3, .studentSubscribe h4, .studentSubscribe h5, .studentSubscribe h6, .studentSubscribe p, .studentSubscribe div, .studentSubscribe span, .studentSubscribe input {
  font-family: 'Gotham', sans-serif;
}

.studentSubscribe .lnr {
  font-family: 'Linearicons-Free', sans-serif;
}

.studentSubscribe .travTitle {
  font-size: 40px;
  color: #251163;
  font-weight: 700;
  text-transform: uppercase;
}

.studentSubscribe .travSubtitle {
  font-size: 20px;
  color: #DB582E;
  margin-bottom: 0px;
}

.studentSubscribe .dates {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.studentSubscribe .dates .date {
  font-size: 20px;
  padding: 10px 50px;
  border: 3px solid #251163;
}

.studentSubscribe .dates .date span {
  vertical-align: middle;
}

.studentSubscribe .dates .date.start {
  color: #fff;
  background-color: #251163;
}

.studentSubscribe .dates .date.end {
  color: #ffffff;
}

.travelLogo {
  width: 250px;
  display: block;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-expand-lg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-expand-lg .navbar-nav {
  width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
  text-transform: uppercase;
  color: #251163;
  text-align: center;
  font-weight: 500;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #DB582E;
  font-weight: 800;
}

.navbar-toggler {
  background-color: #fff;
  color: #DB582E;
  border: 2px solid #DB582E;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.navbar-toggler.collapsed {
  border: 2px solid #DB582E;
  color: #fff;
  background-color: #DB582E;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.navbar-toggler span {
  font-size: 30px;
}

.stickyHeader {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
}

.stickyHeader .travelLogo {
  width: 150px;
  display: block;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.stickyHeader .navbar-expand-lg {
  padding: 10px 0 0 0 !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.stickyHeader .col-sm-12 {
  width: 20%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.stickyHeader .col-12 {
  width: 80%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.textBlock {
  overflow: auto;
}

.textBlock.payment b, .textBlock.payment strong {
  font-size: 20px;
}

.textBlock b, .textBlock strong {
  font-weight: 800;
}

.travelDetSlide {
  background-image: url(/images/travel-det-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.travelDetSlide h1, .travelDetSlide h2 {
  color: #fff;
}

.travelDetSlide h1 {
  font-size: 4rem !important;
}

.travelDetSlide .countDown {
  color: #fff;
}

.travelDetSlide .countDown .countNumb {
  font-size: 80px;
  font-weight: 600;
  padding: 0px 10px;
}

.travelDetSlide .countDown .countNumb.countSepar {
  vertical-align: top;
}

.travelDetSlide .countDown small {
  font-weight: 300;
  text-transform: uppercase;
  margin-top: -10px;
  display: block;
}

.travelDetSlide .buttonStyle {
  background-color: #DB582E;
  color: #fff;
  font-size: 30px;
  padding: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  border: 2px solid #DB582E;
  background-color: #DB582E;
  color: #fff;
  font-size: 20px;
  padding: 10px 30px;
  font-weight: 500;
  letter-spacing: 3px;
  border: 2px solid #DB582E;
  display: inline-block;
  max-width: 100%;
}

.destinationImage {
  background-size: cover;
  background-position: center;
  min-height: 450px;
  background-repeat: no-repeat;
}

.hfTravelImg, .weTravelImg {
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.hfTravelImg {
  background-image: url(/images/hf-img.jpg);
}

.weTravelImg {
  background-image: url(/images/we-img.jpg);
}

.travelDet {
  background-image: url(/images/travel-det-2.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.travelDet .travTitle, .travelDet .travSubtitle, .travelDet p {
  color: #ffffff;
}

.travelDet ul {
  color: #ffffff;
}

.travelDet .destinationImage {
  height: 100%;
}

.travDownload {
  background-color: #DB582E;
  padding: 10px 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #fff;
  display: block;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.travDownload:hover {
  background-color: #fff;
  color: #DB582E;
  border: 2px solid #DB582E;
}

.travDownload.secondary {
  background-color: #251163;
  display: inline-block;
  width: auto;
}

.travDownload.secondary:hover {
  background-color: #fff;
  color: #251163;
  border: 2px solid #251163;
}

.glBox {
  padding: 10px;
  border: 2px solid #fff;
  margin-top: 30px;
  color: #fff;
}

.glBox .destinationImage {
  min-height: 300px;
}

.priceBlock {
  background-color: #DB582E;
  padding: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin: auto;
  text-transform: uppercase;
}

.priceBlock b, .priceBlock strong {
  font-weight: 900;
}

#iscriviti .destinationImage {
  height: 100%;
}

#iscriviti input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: 25px;
  width: 100%;
  outline: none !important;
  text-transform: uppercase;
}

#iscriviti label {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.travelDetForm .formSub, .travelers .formSub {
  text-transform: uppercase;
  color: #DB582E;
  margin-top: 25px;
}

.travelDetForm label, .travelers label {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.travelDetForm input, .travelDetForm textarea, .travelDetForm select, .travelers input, .travelers textarea, .travelers select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #BCBCBC;
  margin-bottom: 25px;
  width: 100%;
  outline: none !important;
  font-weight: 600;
}

.travelDetForm input[type="checkbox"], .travelers input[type="checkbox"] {
  width: auto;
}

.cartQuantity {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #BCBCBC;
  width: 100%;
  outline: none !important;
  font-weight: 600;
}

#goToTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  text-decoration: none;
}

#goToTop span {
  background-color: #251163;
  padding: 11px;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  display: block;
  height: 50px;
  color: #fff;
  -webkit-box-shadow: 0px 3px 8px #000000a1;
          box-shadow: 0px 3px 8px #000000a1;
  font-size: 30px;
}

.footer {
  background-color: #231F20;
  color: #fff;
}

.footer a {
  text-transform: uppercase;
  border: 1px solid;
  padding: 10px;
  margin: 10px;
  display: inline-block;
  font-size: 13px;
}

/* E-commerce */
.eCommercePage .langFlag {
  width: 30px;
}

.menuButton {
  width: 50px;
  display: inline-block;
  padding: 0;
}

.menuButton .nav-link {
  font-size: 16px;
  width: 40px;
  height: 40px;
  border: 2px solid #db582e;
  color: #db582e !important;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 7px 10px;
}

.menuButton .nav-link:hover {
  color: #fff !important;
  background-color: #db582e;
}

.menuMobButton {
  font-size: 20px;
  color: #fff;
  padding: 7px;
  border: 2px solid #fff;
  background-color: #231f20;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
}

.travelSummup .row {
  border-bottom: 1px solid #db582e;
}

.travelSummup .row:last-child {
  border-bottom: none;
  font-size: 20px;
  font-weight: 900;
  margin-top: 20px;
}

.travelSummup .row:last-child span {
  font-size: 30px;
}

.fadeIn p {
  font-size: 13px;
  max-width: 800px;
  margin: auto;
  letter-spacing: 1px;
  color: #757575;
}

.travelProd {
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.travelProd .hoverButtons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.travelProd .hoverButtons .menuButton .nav-link {
  font-size: 23px;
  width: 47px;
  height: 47px;
}

.travelProd:hover .hoverButtons {
  bottom: 45%;
  opacity: 1;
}

.travelProd:hover .prodDet {
  padding-top: 100%;
}

.travelProd .prodDet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #251163db;
  color: #fff;
  padding-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.travelProd p {
  font-size: 14px;
  margin: 0;
}

.travelProd p span {
  margin-right: 10px;
}

.travelProd .bBottom {
  border-bottom: 2px solid #db582e;
}

.travelProd .bRight {
  border-right: 2px solid #db582e;
}

.travelProd .priceTag {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 4px 12px;
  background-color: #db582e;
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  border: 2px solid;
  z-index: 9;
}

.owl-carousel.owl-trav .owl-nav button.owl-prev, .owl-carousel.owl-trav .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background-color: #221157;
  color: #fff;
  font-size: 24px;
  border: 2px solid;
  margin-top: 30px;
  margin-right: -1px;
}

.sumUpOrder {
  overflow-x: auto;
}

.orderTable thead {
  color: #251163;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 2px solid #DB582E;
  background-color: transparent;
}

.orderTable thead th {
  padding: 20px 10px;
  font-size: 14px;
}

.orderTable tbody td {
  border-bottom: 1px solid #b7b7b7 !important;
  border-left: none !important;
  background-color: transparent;
  padding: 20px 10px;
  font-size: 14px;
}

.orderTable tbody td:last-child {
  border-bottom: 1px solid #b7b7b7 !important;
}

.orderTable tbody tr:last-child td {
  border-bottom: 2px solid #db582e !important;
}

.orderTable .priceNumber {
  font-weight: 600;
  font-size: 18px;
}

.orderTable .destinationImage {
  width: 200px;
  min-height: 90px;
}

.totalPrice {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
}

.totalPrice span {
  color: #251163;
  margin-right: 25px;
}

.accordion-button {
  background-color: transparent;
  color: #231F20;
  border: 1px solid #b7b7b7;
  cursor: pointer;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #DB582E;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.accordion-button input[type="radio"]:after {
  content: "";
  background-color: #ff000000;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.travelers .accordion-button:not(.collapsed) {
  background-color: #251163;
}

.accordion-body {
  border-bottom: 1px solid #b7b7b7;
  border-left: 1px solid #b7b7b7;
  border-right: 1px solid #b7b7b7;
}

.accordion-body p {
  font-size: 14px;
}

.infoBlock span {
  font-size: 42px;
  color: #db582e;
  margin-bottom: 20px;
  display: block;
}

.infoBlock h5 {
  font-weight: 400;
  margin-top: 30px;
}

.iub_container.iub_base_container h2 {
  margin-top: 50px !important;
}

.iub_container.iub_base_container h3 {
  color: #db582e !important;
}

.iub_container.iub_base_container h5 {
  color: #251163 !important;
}

.cond-container .cond-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
}

.cond-container div {
  margin-bottom: 10px;
}

.soldOut, .financed, .private {
  background-color: #c40404de;
  text-align: center;
  color: #fff;
  letter-spacing: 6px;
  z-index: 999;
}

.financed {
  background-color: #009688;
}

.private {
  background-color: #9C27B0;
}
/*# sourceMappingURL=style.css.map */