@charset "UTF-8";

.LinkFooter {
    display: block;
    text-align: center;
    width: 100%;
    padding-top: 35px;
}

/****************************************************************
Translate
*****************************************************************/
.TitleTranslate {
    height:40px;
    line-height:30px;
    width:100%;
    border:1px solid transparent;
    border-bottom:1px solid var(--neutral-0);
    margin-bottom:20px;
    clear: both;
}

.TitleTranslate a{
    vertical-align: bottom;
    border-style: none;
    float: right;
    margin-top: 12px;
}

.HideTable {
    display: none;
}

.TableAdecuation {
    width:100%;
    margin-bottom:20px;
}

.LinkTranslation {
    padding: 5px 5px;
    margin: 0px 5px;
}

.table  textarea {
    display:block;
    min-height: 100px;
}

.BtnMoveTop, .BtnGoToNext {
    display: none; 
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    color: var(--neutral-0); 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
  }
  
  .BtnMoveTop:hover, .BtnGoToNext:hover {
    background-color: var(--neutral-300); 
  }

/****************************************************************
SITE PUBLIC LANDPAGE.CSS
*****************************************************************/

#CustomButtons input[type=button] {
    cursor: pointer;
    font-size: 18px; 
    border-style: none; 
    font-family: var(--font-family); 
    color: var(--neutral-0); 
    font-weight: normal; 
    border-radius: 4px; 
}

#TopText {
    font-size: 24pt; 
    font-family: 'Montserrat',arial,sans-serif; 
    font-weight: 700; 
    line-height: 28pt; 
    text-align:center;
}

#MiddleText {
    font-family: 'Montserrat',arial,sans-serif; 
    font-size: 13pt; 
    line-height: 23pt; 
    padding: 0px; 
    margin: 0px; 
    color: var(--neutral-900);
}

#MoreInfoButton input[type=button] {
    font-size: 18px; 
    background-color: var(--neutral-500); 
    border-style: none; 
    font-family: var(--font-family); 
    color: var(--neutral-0); 
    font-weight: normal; 
    border-radius: 4px; 
    -webkit-appearance: none;
}

#MobileMoreInfoButton input[type=button] {
    background-color: var(--neutral-500); 
    border-style: none; 
    font-family: var(--font-family); 
    color: var(--neutral-0); 
    font-weight: normal; 
    border-radius: 4px; 
    -webkit-appearance: none;
}

/****************************************************************
SITE OVERLAY PUBLIC
*****************************************************************/
#overlayPublic {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--neutral-900);
	z-index: 2;
	cursor: pointer;
}

#overlayPublicText {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: var(--neutral-0);
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

/****************************************************************
BUTTON LANDPAGE SAMPLE
*****************************************************************/
.btn-land-page {
    font-size: 18px; 
    border-style: none; 
    font-family: var(--font-family); 
    font-weight: normal; 
    border-radius: 4px; 
}

/****************************************************************
TOGGLE BUTTON
*****************************************************************/
/* The switch - the box around the slider */
label.switch {
    vertical-align: middle;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-50);
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--neutral-0);
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: var(--client-primary-1, var(--primary));
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px var(--client-primary-1, var(--primary));
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .switch .slider.round {
    border-radius: 34px;
  }
  
  .switch .slider.round:before {
    border-radius: 50%;
  }

/****************************************************************
Member Preferences of category options
*****************************************************************/
.Box-Preference div{
  width: 100%;
  margin: 5px 0px;
}

.Box-Preference .Box-Left{
  display: inline-block;
  text-align: center;
  width: 19%;
}

.Box-Left {
  text-align: left !important;
  height:auto;
  font-size:1.2vw;
  word-wrap: break-word;
}

.Box-Preference div .TitleMovil {
  display: none;
}

@media (max-width:425px) {
	.Box-Preference .Box-Left, .Box-Preference div {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    font-size: initial;
  }
  .Box-Hide-Movil {
    display: none !important;
  }
  .Box-Category {
    text-align: center !important;
    margin-bottom: 20px;
    border-bottom: 1px dotted var(--neutral-100);
    padding: 5px 0px;
  }
  .Box-Preference div .TitleMovil {
    display: inline-block;
    padding: 8px 0px;
  }
  .Box-Preference div label {
    float: right;
  }
}