/*
 * Globals
 */
 :root {
  --primary-color: rgb(255, 225, 0);
  --secondary-color: #D9D8D9;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}

/*
 * Fonts
 */ 
 @font-face {
  font-family: 'phive-49';
  src: url(Knockout-49Liteweight.otf) format('opentype');

  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'phive-29';
  src: url(Knockout-29JuniorLtweight.otf) format('opentype');

  font-style: normal;
  font-display: swap;
}
/*
 * Base structure
 */

body {
  margin:0;
  padding:0;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  font-family: 'phive-29';
  font-size: 1.5rem;
}

.cover-container {
  /*max-width: 42em;*/
}


/*
 * Header
 */

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}
.navbar-dark .navbar-toggler{
  z-index: 6000;
}
/*
 * PRevious Button
 */
.previous-btn{
  position:fixed;bottom:10px;left:10px;z-index:1000; 
}

/*
 * Sidebar Menu
 */
.sidebar
{
  position: fixed;
  top: 0;
  left: calc(100%);
  width: 230px;
  height: 100%;
  background-color: #000000;
  color:#ffffff;
  padding: 20px;
  transition: all 0.3s ease;
}
  
.sidebar.show
{
  left: calc(100%  - 230px);
  z-index: 6000;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--primary-color)!important;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.nav-link.active{
  color: var(--secondary-color)!important;
  font-weight: 500;
}
.bg-phive
{
  background-color: var(--primary-color)!important;
}
/*
* Page Title
*/
.phive_page_title{
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.phive_page_title::before {
  content: '>';
  margin-right: 10px;
  color: var(--primary-color);
}
/*
* Forms
*/
.phive_page1_form{
  max-width:500px;
}
.phive_page1_form img{
  max-width:500px;
  margin: 60px 0;
}
.phive_page1_box{
  border: 0;
  border-radius: 0;
  padding:0 20px 20px 20px;
}
.phive_page1_box input{
  margin: 20px 0 0 0;
  padding:10px;
  text-align:left;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  border:0;
  background-color: var(--secondary-color);
}
.phive_page1_box select{
  margin: 20px 0 0 0;
  padding:10px;
  text-align:left;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  border:0;
  background-color: #929293;
}
.phive_page1_box select:focus {
  background-color: #fff;
}
.phive_page1_box input[type=submit]{
  margin: 20px 0 0 0;
  padding:10px;
  text-align:center;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  border:0;
  background-color: #FFF9CC;
}
/*#phive_consentbox{

}*/
.phive_textbox{
  background-color: #A09FA0;
  border-radius: 5px;
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  color: #000;
  text-shadow: none;
  margin-top: 20px;

}
.phive_textbox p{
  margin:0;
}
#phive_consentbox h5{
  font-size: 12px;
  font-weight: 500;
  color: #000;
  margin: 0;
}
/*
*video background
*/
.video-background {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #000000;
  opacity: 0.25;
  z-index: -1;
}
body.video-opacity-1 .video-background{
  opacity: 1;
}
.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
/*
* Questionary
*/
.phive_question_title{
  display: flex!important;
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-color); 
  text-transform: uppercase;
  align-items: center;
}
.phive_question_title::before {
  content: '>';
  margin-right: 10px;
  color: white;
}
.phive_btn_submit{
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #000;
  min-width: 150px;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.phive_btn_question.style1{
  border-radius: 5px;
  background-color: var(--secondary-color);
  color: #000;
  min-width: 150px;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
.phive_btn_question.style2{
  border-radius: 20px;
  background-color: var(--secondary-color);
  color: #000;
  min-width: 40px;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
}
.phive_btn_question.active{
  background-color: var(--primary-color);
}
.phive_question_place_holder{
  height:2em;
}
/*
* Horarios
*/
.phive-horarios table{
  font-size: 1.1rem;
}
.phive-horarios .nav-tabs{
  padding-top: 20px;
  border-bottom: 1px solid #000;
}
.phive-horarios .nav-tabs .nav-link{
  background-color: #000!important;
  border-color: #000!important;
  color: #fff!important;
}
.phive-horarios .nav-tabs .nav-link.active{
  background-color: rgb(251,223,43)!important;
  border-color: #000!important;
  color: #000!important;
}
.phive-horarios .tab-pane{  
  padding-top: 30px;
  padding-bottom: 30px;
}
.phive-horarios table{
  width:1000px;text-align:center;margin:auto;
  background-color: rgba(0,0,0,0.6);
}
.phive-horarios table th,
.phive-horarios table td{
  padding: 5px 10px;
  border:1px solid #fff;
  font-weight: 500;
}
.phive-horarios table td.box{
  background-color: rgba(251,223,43,0.4);
  color: rgb(251,223,43);
  cursor: pointer;
}
.phive-horarios table td.box.active{
  background-color: rgba(251,223,43,1);
  color: rgb(0,0,0);
  cursor: pointer;
}
/*
* Boxes
*/
.phive-box{
  background-color: #efefef;
  padding:10px;
  max-width: 500px;
  margin: auto;
}
.selected .phive-box{
  border:5px solid var(--primary-color)!important;
  padding:5px;
}
.phive-box-container{
  border: 1px solid var(--primary-color)!important;
}
.phive-box-title{
  color: #000;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 40px;
  line-height: 36px;
  font-family: 'phive-49';
}
.phive-box-price-call{
  color: #000;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 40px;
  line-height: 28px;
}
.phive-box-price{
  color: #000;
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 40px;
  line-height: 72px;
}
.phive-box-price-promo{
  color: #000;
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0px;
  line-height: 72px;
}
.phive-box-old-price{
  color: #000;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
  line-height: 24px;
  text-decoration: line-through var(--primary-color)!important;
}
.phive-box-services{
  margin-top: 20px
}
.phive-box-services ul{
  list-style-type: none;
  margin-bottom: 0;
}
.phive-box-services ul li{
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.phive-box-services ul li.promo{
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.phive-box-details,
.phive-box-cycle
{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
}
.phive-box-notes
{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
  margin-top:40px;
}

.phive-box-button button{
  margin-top: 30px;
  margin-bottom: 40px;
  background-color: var(--primary-color)!important;
  border: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 60px;
}
.phive-box-button button:active{
  background-color: #000!important;
  color: var(--primary-color)!important;
}

.phive-right-bottom-corner{
  position: absolute;
  bottom: 10px;
  right: 10px;
}
/*
* Carousel
*/
.carousel-indicators{
  position:fixed;
}
.carousel-indicators .active{
  background-color: var(--primary-color)!important;
}
/*
* Aditional Services
*/
.phive-aditional{
  position:fixed;bottom:100px;  
  display: flex;
  justify-content: center;
  gap: 20px;
}
.phive-aditional .phive-btn-aditional{
  background-color: var(--primary-color)!important;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 16px;
  align-items: center;
  font-weight: 500;
}
.phive-aditional .phive-btn-aditional.active-button {
  background-color: #000!important; 
  color: var(--primary-color)!important; 
}
.phive-aditional .phive-btn-aditional .phive-btn-aditional-smalltext{
  font-size: 0.9rem;
  line-height: 10px;
  margin-left: 3px;
  font-weight: 400;
}
#dynamic-text{
  font-size:80px;text-align:left;
}
#dynamic-text span{
  color: var(--primary-color)!important;
}