
/* Root */

.btn[disabled]{
    opacity: 0.5;
    pointer-events: none;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

#holder_persons .input-group {
    flex-wrap: nowrap;
}

#holder_persons input {
    padding: 0;
}

/* Links */

.all-files a {
    color: #ef3e42;
}

#content-main li a {
    color: #CDC4B2;
    text-decoration: none;
}

#content-main .tx-powermail li a {
    border: 1px solid #808080;
    color: #000000;
    list-style: none outside none;
    padding: 5px;
    text-decoration: none;
}


.half input.tab1:checked~.tab-content label.dependentdel{
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 1;
}

.half input.tab1~.tab-content label.dependentdel{
    position: relative;
  
}

.fa-trash-can{
  font-size: 20px;
}

.fa-trash-alt:before, .fa-trash-can:before {
    content: "\f2ed";
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}

.form-group label {
    cursor: default;
}

#header-main-content {
    margin: 0 5px;
}

.salles-et-swimming label {
    margin-bottom: 4px;
}


.menu-timeline-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0px 50px 0px;
    position: relative;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu-timeline-container .menu-timelineBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px 0px 0px 10px;
    width: 100%;
}

.menu-timeline-container .menu-timelineBar::before {
    content: "";
    width: 50%;
    height: 3px;
    background: #d5e2f1;
    position: absolute;
    top: 6px;
    z-index: 0;
    left: 0;
    right: auto;
}

.menu-timeline-container .menu-timelineBar::after {
    content: "";
    width: 50%;
    height: 3px;
    background: #d5e2f1;
    position: absolute;
    top: 6px;
    z-index: 0;
    left: auto;
    right: 0;
}

.menu-timeline-container .menu-timelineBar .menu-timelineBar_circle {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 4px solid var(--yellow-500);
    border-radius: 50%;
    position: relative;
    display: block;
    z-index: 1;
    left: -50%;
}

.menu-timeline-container .menu-timelineBar.fill-barColor::after,
.menu-timeline-container .menu-timelineBar.fill-barColor::before {
    background: var(--yellow-400);
}

.menu-timeline-container .menu-timelineBar>span {
    position: relative;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    left: -50%;
    font-size: 13px;
    margin-top: 5px;
    white-space: nowrap;
}

.form-group span.error,
.error-time .error,
.error-slot .error,
.error-oneweek .error,
.error-day .error,
.form-group label.error,
label.error {
    font-size: 12px;
    color: red;
    margin-top: 4px;
}

.form-group label.error,
label.error {
    width: 100%;
}

.accordion-content-wrap input[type="file"]+.error {
    width: 80%;
    float: right;
}

svg.icon-color {
    cursor: pointer;
}

.form-control.error,
label.error {
    display: block;
}

label.required,span.required {
    position: relative;
}

label.required::after,span.required::after {
    content: "*";
    color: #ff4801;
    font-size: 16px;
    position: absolute;
}

.form-group textarea {
    resize: vertical;
}


.form-group select:focus,
.btn:focus{
    outline: none;
}




  /* ----------- */

 

  .custom-select-wrapper {
    position: relative;
    user-select: none;
    margin: 10px 0;
    width: 98%;
  }
  
  .custom-select {
    position: relative;
    font-family: Arial;
  }
  
  .custom-select__trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    background-color: #fff;
    cursor: pointer;
    user-select: none;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .custom-select__trigger input {
    margin-right: 10px;
  }
  
  .custom-select__trigger .arrow {
    position: relative;
    width: 10px;
    height: 10px;
    border-left: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    transition: all .5s ease-out;
  }
  
  .custom-select.open .arrow {
    transform: rotate(45deg);
  }
  
  .custom-options {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    overflow: auto;
    z-index: 999;
    max-height: 200px;
  }
 
  .custom-options .custom-option {
    position: relative;
    display: block;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
  }
  
  .custom-options .custom-option.selected {
    background-color: #f5f5f5;
  }
  
  .custom-options .custom-option:hover {
    background-color: #f5f5f5;
  }
  
  .custom-select.open .custom-options {
    display: block;
  }

  #memberForm .custom-select-wrapper {
    margin: 0;
  }

  #memberForm .custom-select__trigger{
    border-radius: 10px;
  }

  
.select-icon {
    position: absolute;
    top: 39%;
    right: 10px;
    transform: translateY(-50%);
    width: 20px;
    /* Set the width of the drop icon */
    height: 20px;
    /* Set the height of the drop icon */
    cursor: pointer;
    z-index: 1; /* Set z-index to 1 */
}



.select-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
  }
  

  /* -------------- */
  


.formSubmit-Btn-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 2px solid #d5e2f1;
    padding-top: 45px;
    margin-top: 20px;
}

._next {
    position: relative;
}

.formSubmit-Btn-section  .butn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.butn._next {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    text-align: right;
}

.butn._prev {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    text-align: left;
}

.butn>.btn {
    font-weight: 500;
}

#content {
    background: #ffffff;
    position: relative;
    border: 1px solid white;
    border-radius: 4px 4px 4px 4px;
}

#header-main-content {
    border-bottom: 3px dotted #CDC4B2;
    margin-left: 5px;
    margin-bottom: 15px;
}

#header-main-content .span7 {
    margin-left: 0;
}

#action {
    margin-top: 10px;
    width: 64px;
}

#action a {
    float: left;
}

#action img {
    margin-left: 10px;
}

#content-left,
#content-main,
#content-right {
    background: #ffffff;
    padding-bottom: 20px;
}

#page.int #content-main {
    padding-left: 10px;
    padding-top: 15px;
    width: 480px;
}

/* #page.int .span6#content-main {
    margin: 0;
    width: 100%;
    padding: 0;
} */

#page.int.oneCol #content-main {
    width: 930px;
}

#page.int.oneCol #content-main {
    width: auto;
}


#content-main h1 {
    color: #ef3e42;
}

.form-group {
    width: 100% !important;
    float: left !important;
    margin-left: 0 !important;
}



/* here slider css starts */

.yellow {
    background: #fad800;
}

.half .tab {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    color: #555555;
    overflow: hidden;
    border: 1px solid #4ca3e2;
    border-radius: 12px;
}

.half input[type=checkbox].tab1 {
    position: absolute;
}

.half label.accordion-label {
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    font-weight: bold;
    line-height: 30px;
    cursor: pointer;
    margin-bottom: 0;
    background: #4ca3e2;
    /*   background: url("../img/accordion-bg.png") repeat; */
    color: #fff;
}

.half label.accordion-label::after {
    position: absolute;
    right: 0;
    top: -15px;
    display: block;
    width: 3em;
    height: 3em;
    line-height: 3;
    text-align: center;
    -webkit-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

.half input[type=checkbox].tab1+label.accordion-label::after {
    content: "+";
    font-size: 20px;
}

.half input[type=checkbox].tab1:checked+label.accordion-label::after {
    transform: rotate(360deg);
    content: url("../img/accordion.png");
}


.half .tab-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
}

.half input.tab1:checked~.tab-content {
    max-height: 100%;
}

.contents-acco {
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.radio-btn {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    width: 100px !important;
}

.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #d0cbcb;
}

.radio-btn input:checked~.checkmark {
    background-color: #2f9b44;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-btn .checkmark:after {
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
}

.radio-btn input:checked~.checkmark:after {
    display: block;
}

.sociale-radio label {
    width: 120px;
}

.accordion-content-wrap label {
    float: left;
    width: 20%;
    cursor: default;
}

.accordion-content-wrap .subUserPhotourl label,
.accordion-content-wrap .subUserJustificationurl label {
    float: none;
    width: auto;
}

.sociale-radio {
    margin-bottom: 10px;
}

.accordion-content-wrap .sociale-radio,
.accordion-content-wrap .accordion-text {
    float: left;
    width: 80%;
}

.accordion-content-wrap .radio-btn {
    display: inline-block;
}

p.form-error {
    text-align: left;
    color: #de2422;
    margin: 0 0 0 130px;
    font-weight: normal;
}


.half .form-error {
    margin: 0 !important;
}

.sociale-radio .form-error {
    clear: both;
}

.datepicker {
    position: relative;
    display: inline-block;
    float: right;
}

.datepicker {
    cursor: pointer !important;
}

.datepicker span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    cursor: pointer;
    line-height: 0;
    font-size: 20px;
}


.datepicker {
    display: block;
    float: none;
}


.accordion-text .checkbox-inline {
    width: 45%;
    float: left;
    margin-bottom: 20px;
}


.accordion-text .checkbox-inline span {
    width: 91%;
}

.checkbox-inline input[type=checkbox] {
    margin: 0 10px 0 0;
}

.checkbox-inline input[type="checkbox"] {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
}

.checkbox-inline span {
    display: inline-block;
    width: 85%;
}

.badge-list-wrap .list-wrap:last-child {
    margin-right: 0;
}

.plan .list-wrap div.list-wrap-div a:nth-child(n) div.yellow-bg {
    background: #FCCD53;
}

.plan .list-wrap div.list-wrap-div a:nth-child(3n+2) div.yellow-bg {
    background: #FC5D5D;
}

.plan .list-wrap div.list-wrap-div a:nth-child(3n+3) div.yellow-bg {
    background: #7DA051;
}

.list-wrap div.list-wrap-div div.yellow-bg {
    /*     background: url('../img/yellow_bg.jpg') no-repeat; */
    background: #FCCD53;
    margin-bottom: 23px;
}

.badge-list-wrap a {
    color: var(--body_text_color);
    text-decoration: none !important;
}

#content-wrapper .right>.addrs h1,
#content-wrapper .right>.addrs h2 {
    font-size: 18px !important;
    color: #046102;
    font-weight: 700;
    margin: 5px 0px;
    line-height: 1.2;
}


.badge-list-wrap .list-wrap div.list-wrap-div div img.badge-img {
    position: absolute;
    right: 25px;
    top: -7px;
}

.badge-list-wrap .list-wrap div.list-wrap-div.row {
    row-gap: 40px;
}

/* 
.badge-list-wrap.plan .list-wrap .list-wrap-div{
    width: 100%;
    margin: 0;
} */

.badge-list-wrap.plan .right>.addrs h1 {
    font-size: 18px;
    margin-top: 10px;
}

.view-more-btn {
    margin: 5px;
}

button.btn.btn-primary.show-less-btn {
    display: none;
}

.paragraph.expanded {
    max-height: none;
}

.list-wrap div.list-wrap-div div.yellow-bg.expanded {
    height: 100%;
}

.paragraph.expanded+button.btn.btn-primary.show-less-btn {
    display: block;
}

.paragraph.expanded+button.btn.btn-primary.show-less-btn+button.btn.btn-primary.view-more-btn {
    display: none;
}

.userPhotourl,
.userJustificationurl,
.subUserPhotourl,
.subUserJustificationurl {
    display: flex;
}

.userPhotourl .photodel,
.userJustificationurl .justificationdel,
.subUserPhotourl .subUserPhotodel,
.subUserJustificationurl .subuserJusdel {
    padding: 0 10px;
}

#accordion-additionalmembers .accordion:first-of-type {
    border-top: 1px solid var(--purple-300);
}

#previewform .userphotolabel,
#previewform .userjustificationlabel {
    padding: 5px 0;
}

.category .hr-line {
    width: 150px;
}

.hr-line {
    width: 115px;
    height: 0px;
    border-top: 2px solid #F80D0D;
    margin: 10px auto;
    border-bottom: 0;
    position: relative;
    top: 60px;
    left: 0;
}


.show-less-btn,
.view-more-btn {
    display: none;
}

.login-wrap h4 {
    padding: 10px 30px;
}


/*ng person  Table css  */

#subscriptionForm .col-12{
    position: relative;
    width: 100%;
   /*  padding-right: 10px;
    padding-left: 10px; */
}

.ng-person-select-table tr td {
    border: 0;
    border-bottom: 1px solid #ebedf2;
}

.ng-person-select-table tr:last-child td {
    border-bottom: 0;
}

.ng-person-select-table{
    margin-top:10px;
    font-size:12px;
}

.ng_person_selection_thead{
    font-size:12px;
    line-height:12px;
    font-style:normal;
    font-variant:normal;
    font-weight:normal;
    letter-spacing:.24px;
    color:#908e9a;
    text-transform:uppercase;
    opacity:1
}

.ng_person_selection_thead td{
    padding:16px 5px 16px 5px;
    line-height: 12px;
}

.ng_person_selection_tbody{
    margin:0
}

.ng_person_selection_tbody td{
    text-align:left;
    font-size:14px;
    line-height:24px;
    font-style:normal;
    font-variant:normal;
    font-weight:600;
    letter-spacing:0;
    color:#464457;
    opacity:1;
    padding:16px 5px 16px 5px
}

.ng_person_selection_tbody tr td:last-child,
.ng_person_selection_thead tr td:last-child {
    padding-right: 0px;
}

.ng_person_selection_tbody tr td:nth-child(2),
.ng_person_selection_thead tr td:first-child{
    padding-left: 0px;
}


.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-prepend, .input-group-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-prepend {
    margin-right: -1px;
}

.input-group-append {
    margin-left: -1px;
}

.ng_person_selection_touchspin_button_down{
    width:32px!important;
    height:32px!important;
    color:#fff;
    background:var(--yellow-400)  0% 0% no-repeat padding-box;
    border:1px solid var(--yellow-400);
    opacity:1;
    border-top-left-radius:4px!important;
    border-bottom-left-radius:5px!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ng_person_selection_touchspin_button_up {
    width: 32px!important;
    height: 32px!important;
    color: #fff;
    background: var(--yellow-400)  0% 0% no-repeat padding-box;
    border: 1px solid var(--yellow-400);
    opacity: 1;
    border-top-right-radius: 4px!important;
    border-bottom-right-radius: 4px!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ng_person_selection_touchspin {
    width: 40px!important;
    height: 32px!important;
    text-align: center!important;
    font-size: 17px;
    line-height: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    letter-spacing: 0;
    color: #908e9a;
    opacity: 1;
    padding: 0;
}

.ng_ts_button_icons {
    color: #fff!important;
}

.btn [class^="fa-"] {
    padding-right: 0.5rem;
    vertical-align: middle;
    line-height: 0;
}

.fa-minus:before {
    content: "";
}

.fa, .fas {
    font-weight: 900;
}

.input-group-prepend .btn, .input-group-append .btn {
    position: relative;
    z-index: 2;
}

.input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text, .input-group>.input-group-append:not(:last-child)>.btn, .input-group>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-control, .input-group>.form-control-plaintext, .input-group>.custom-select, .input-group>.custom-file {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.form-control:disabled, .form-control[readonly], .form-control:disabled[type=checkbox]+span:after,input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
    color: rgba(0,0,0,.3);
    background-color: #fff;
}



#previewform .ng_ticket_price{
    float: right;
}

.input-group>.form-control:not(:last-child), .input-group>.custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.form-control:not(:first-child), .input-group>.custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.kt-hidden, .kt-hide {
    display: none !important;
}

.store-checkbox {
    height: 35px;
    padding: 0;
    min-width: 70px;
    border: none;
}

.btn.ng_person_selection_touchspin_button_up.bootstrap-touchspin-up:active,
.btn.ng_person_selection_touchspin_button_down.bootstrap-touchspin-down:active {
    background: #fad800 0% 0% no-repeat padding-box!important;
}

.btn.ng_person_selection_touchspin_button_up.bootstrap-touchspin-up:hover,
.btn.ng_person_selection_touchspin_button_down.bootstrap-touchspin-down:hover {
    background: #fad800 0% 0% no-repeat padding-box!important;
}

.btn.ng_person_selection_touchspin_button_up.bootstrap-touchspin-up:focus,
.btn.ng_person_selection_touchspin_button_down.bootstrap-touchspin-down:focus
{
    background: #ff995c 0% 0% no-repeat padding-box;
}


.btn.ng_person_selection_touchspin_button_up.bootstrap-touchspin-up[disabled]:hover,
.btn.ng_person_selection_touchspin_button_down.bootstrap-touchspin-down[disabled]:hover{
    background: #e6e6e6 0% 0% no-repeat padding-box!important;
}

.kt-separator {
    height: 0;
    margin: 20px 0;
    border-bottom: 1px solid #ebedf2;
}

.ng_ticket_total{
    text-align:left;
    font-size:12px;
    line-height:12px;
    font-style:normal;
    font-variant:normal;
    font-weight:600;
    letter-spacing:.24px;
    color:#464457;
    text-transform:uppercase;
    opacity:1
}

#subscriptionForm .ng_ticket_total{
    display: inline-block;
    float: left;
    padding-top: 10px;
    font-size: 14px;
}



.ng_ticket_price{
    text-align:right;
    font-size:23px;
    line-height:32px;
    font-style:normal;
    font-variant:normal;
    font-weight:600;
    letter-spacing:-.34px;
    opacity:1;
}

#subscriptionForm .ng_ticket_price{
    font-size: 32px;
    line-height:37px;
    padding-left: 0px;
    padding-top: 0px;
    display: inline-block;
    float: right;
}

#memberForm .ng_ticket_price{
    margin-bottom: 30px;
}

#previewform .total_price {
    text-align: right;
    font-size: 23px;
    line-height: 32px;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    letter-spacing: -.34px;
    opacity: 1;
    padding: 10px 0;
}

label.tariffright {
    position: absolute;
    right: 45px;
    top: 6px;
    font-weight: bold;
}

.subuserPhotolabeltitle::after,
.subuserJustificationlabeltitle::after {
    content: "*";
    color: #ff4801;
    font-size: 16px;
    position: absolute;
}

.adult .subuserJustificationlabeltitle::after {
    content: "";
}

/* .ng_person_selection_tbody:not(:has(.price2):has(.price3)) .ng_person_selection_thead td:nth-child(2),.ng_person_selection_thead td:nth-child(3)
{
    display: none;
}

.ng_person_selection_tbody:not(:has(.price2)) .ng_person_selection_thead tr td:nth-child(3){
    display: none;
} */
.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg.subscriptionDetail-card {
    background: #fff !important;
    border: 3px solid #4ca3e2;
    margin-bottom: 0;
    height: 100%;
    transition: background 0.3s ease;
}

.badge-list-wrap .list-wrap-div a:hover .yellow-bg.subscriptionDetail-card {
    background: rgba(76, 163, 226, 0.1) !important;
}

.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg.subscriptionDetail-card img.badge-img,
.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg.subscriptionDetail-card hr.hr-line {
    display: none;
}
.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 10px;
}

.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head img {
    width: 50px;
    height: auto;
}
.tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .right .addrs {
    margin-left: 0;
    margin-bottom: 0;
}
.tx_prillypiscine .intro-wrap .badge-list-wrap.plan .yellow-bg .subscriptionDetail-card-head .right {
    width: 100%;
}
#content-wrapper .tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .right .addrs h1 {
    color: #3500ff !important;
    font-style: normal;
    text-shadow: none;
    font-size: 28px !important;
    text-align: center;
    margin: 5px 10px;
}



/* media query */

@media(max-width:1024px){
    .ng_person_selection_thead{
        text-align:left;
        font-size:12px;
        line-height:24px;
        font-style:normal;
        font-variant:normal;
        font-weight:500;
        letter-spacing:.24px;
        color:#908e9a;
        text-transform:uppercase;
        opacity:1
    }

    .ng_person_selection_tbody td{
        text-align:left;
        font-size:13px;
        line-height:23px;
        font-style:normal;
        font-variant:normal;
        font-weight:600;
        letter-spacing:0;
        color:#464457;
        opacity:1
    }

    .ng_ticket_total{
        text-align:left;
        font-size:12px;
        line-height:12px;
        font-style:normal;
        font-variant:normal;
        font-weight:600;
        letter-spacing:.24px;
        color:#464457;
        text-transform:uppercase;
        opacity:1
    }

    .ng_ticket_price{
        text-align:left;
        font-size:23px;
        line-height:32px;
        font-style:normal;
        font-variant:normal;
        letter-spacing:-.34px;
        color:#464457;
        opacity:1
    }
    .tx_prillypiscine .intro-wrap .badge-list-wrap.plan .list-wrap-div > a {
        width: 38%;
    }
}
@media only screen and (max-width: 979px) {
    .tx_prillypiscine .intro-wrap .badge-list-wrap.plan .list-wrap-div > a {
        width: 41%;
    }

}
@media(min-width: 768px) and (max-width: 991px) {
    #main-navigation nav#nav {
        background: #7a7a79;
        padding-bottom: 10px;
    }
    #main-navigation nav#nav ul.nav.menu {
        float: none;
    }
    #main-navigation nav#nav ul.nav.menu > li {
        float: none;
    }
    #main-navigation nav#nav ul.nav.menu > li.divider-vertical {
        display: none;
    }
    #main-navigation nav#nav ul.nav.menu > li.dropdown > a {
        margin-top: 0;
        padding: 12px 20px;
    }
    #main-navigation nav#nav ul.nav.menu > li.home > a {
        margin-top: 25px;
        padding-left: 15px;
    }
}
@media only screen and (max-width: 991px) {
    #content-wrapper .tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .right .addrs h1 {
        font-size: 26px !important;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .menu-timeline-container {
        width: 100%;
        overflow-x: scroll;
        padding: 15px 0px !important;
        margin: 15px 0px;
    }



    .formSubmit-Btn-section {
        flex-wrap: wrap;
    }

    .butn._next,
    .butn._prev,
    .butn._next .btn,
    .butn._prev .btn {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }

    .butn._next {
        margin-top: 10px;
        text-align: center;
    }

    #content {
        border-radius: 0;
    }

    #header-main-content {
        padding: 10px;
    }

    #page.int #content-main {
        width: 100%;
        padding-right: 10px;
    }

    .accordion-content-wrap label,
    .accordion-content-wrap .accordion-text {
        float: none;
    }

    .accordion-content-wrap label {
        width: 100%;
    }

    .accordion-content-wrap .sociale-radio,
    .accordion-content-wrap .accordion-text {
        width: 93%;
    }
    .tx-swimmig-pool .accordion-content-wrap .accordion-text {
        width: 100%;
    }
    .tx-swimmig-pool .accordion-content-wrap .form-group .accordion-text select,
    .tx-swimmig-pool .accordion-content-wrap .form-group .accordion-text input[type=text],
    .tx-swimmig-pool .accordion-content-wrap .form-group .accordion-text textarea.form-control {
        width: 100%;
    }
    p.form-error {
        margin-left: 0;
    }

    .accordion-content-wrap input[type=text] {
        clear: both;
    }

    .datepicker {
        float: none;
    }


    .accordion-text .checkbox-inline {
        width: 100%;
    }

    #campForm .checkbox-inline {
        padding-left: 0;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .badge-list-wrap .list-wrap {
        width: 100%;
    }

    .badge-list-wrap.category .list-wrap .list-wrap-div {
        margin: 0 -7px;
    }

    .badge-list-wrap.category .list-wrap div.list-wrap-div>a {
        width: 100%;
        margin: 15px 7px;
    }

    .badge-list-wrap .list-wrap div.list-wrap-div>a {
        width: 100%;
    }
    #content-wrapper .tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .right .addrs h1 {
        font-size: 24px !important;
        margin: 0px 0px;
        line-height: 30px;
    }
    .list-wrap div.list-wrap-div div .left {
        width: 100%;
    }
    .tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .left {
        width: 20%;
    }
    .tx_prillypiscine .intro-wrap .badge-list-wrap .yellow-bg .subscriptionDetail-card-head .right {
        width: 80%;
        margin-bottom: 0px;
    }
    .tx_prillypiscine .intro-wrap .badge-list-wrap.category .list-wrap-div > a {
        margin: 15px 0px;
    }

    .list-wrap div.list-wrap-div div .right {
        width: 100%;
        margin-bottom: 10px;
    }

    .list-wrap div.list-wrap-div .right>.addrs {
        margin: 10px 0 10px 13px;
    }


    .left img {
        width: auto;
        border-radius: 8px;
    }

    .hr-line {
        width: calc(100% - 50px);
        padding: 10px;
        top: 20px;
    }

    .category .hr-line {
        width: calc(100% - 50px);
    }

    .tx_prillypiscine .intro-wrap .badge-list-wrap.plan .list-wrap-div > a {
        width: 100%;
        margin: 20px 10px;
        display: inline-block;
        float: none;
    }
}

@media(max-width:740px){
    .ng-person-select-table{
        font-size:.7rem!important;
        width:100%
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .yellow .badge-list-wrap .list-wrap-div {
        margin: 0 auto !important;
    }

    .yellow .badge-list-wrap.category .list-wrap div.list-wrap-div>a {
        width: 38%;
    }

    .yellow .badge-list-wrap.category .list-wrap div.list-wrap-div {
        width: 110%;
        column-gap: 0;
    }

    .yellow .badge-list-wrap .list-wrap div.list-wrap-div>a {
        width: 47%;
        min-height: 185px;
    }

    .list-wrap div.list-wrap-ul div .right {
        width: 67%;
    }

    .yellow .list-wrap div.list-wrap-div .right>.addrs {
        margin: 10px 0 10px 10px;
    }

    .badge-list-wrap.plan .right>.addrs h1 {
        font-size: 14px;
    }

    .hr-line {
        width: 200px;
        top: 90px;
    }

    .category .hr-line {
        width: 150px;
        top: 75px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .category .hr-line {
        width: 120px;
        top: 61px;
        left: -14px;
    }

    .hr-line {
        width: 125px;
        top: 75px;
    }
}



@media screen and (min-width: 768px) {
    /* #page.int .span6#content-main {
        width: 715px !important;
    } */

    .badge-list-wrap.plan .yellow-bg {
        min-height: 230px;
    }
}

@media screen and (min-width: 980px) {
    /* #page.int .span6#content-main {
        width: 930px !important;
    } */
}


@media (max-width: 600px) {
    .tx-swimmig-pool .tariffwrapper table.table.ng-person-select-table colgroup > col {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    #header-main-content #action {
        display: none;
    }
}
@media (max-width: 350px) {
    .subscriber_swimming form#previewform .half label.accordion-label {
        font-size: 12px;
    }
    .subscriber_swimming form#previewform .half label.accordion-label label.tariffright {
        font-size: 12px;
        right: 30px;
    }
    .subscriber_swimming form#previewform .half label.accordion-label:after {
        right: -7px;
        font-size: 18px;
        top: -11px;
    }
}