
.h2_FS{
    font-size: 1.5rem;
    font-weight: 600;
}
.label_sign_up_cstm{
    display: flex;
    align-items: center;
}
.p-20{
    padding: 20px;
}
.pl-20{
    padding-left: 20px;
}
.pl-25{
    padding-left: 25px;
}
.m-30{
    margin: 30px;
}
.color_white{
    color: white;
}
.fw-800{
    font-weight: 800;
}
.fs-35{
    font-size: 35px;
}
.fs-24{
    font-size: 24px;
}
.m-0{
    margin: 0!important;
}
.logo{
    width: 200px;
    height: 60px;
}
.logo_single{
    height: 45px;
    width: 35px;    
}
.logo_single_mv{
    transform: translateX(15px);
}
.vw-100{
    width: 100vw;
}
.text_right{
    text-align: right;
}
.dflex_jty_algn_center{
    display:flex;
    justify-content:center;
    align-items:center;
}
.dflex_jty_center{
    display: flex;
    justify-content: center;
}
.wrap_gutter{
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;  
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.jty_spacebtwn{
    display:flex;
    justify-content:space-between!important;
}
.jty_spacearound{
    display:flex;
    justify-content:space-around!important;
}
.jty_space_evenly{
    display: flex;
    justify-content: space-evenly;
}
.fdir_col{
    flex-direction: column;
}
.fdir_row{
    flex-direction: row;
}
@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%!important;
  }
}
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%!important;
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%!important;
  }
}
.btn_pass_reset{
    background-color: var(--bs-primary)!important;
}
.btn_pass_reset span{
    color: var(--bs-primary-inverse)!important;
}
input[type="radio"][id^="cb"] {
  display: none;
}
.lb_template {

  display: inline-block;
  position: relative;
  margin: 10px;
  cursor: pointer;
  border-radius: 15px;
}
.lb_template:before {
  background-color: white;
  color: white;
  font-weight: 800;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid var(--bs-primary);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 24px;
  transition-duration: 0.4s;
  transform: scale(0);
  z-index: 2;
}
.lb_template img {
  height: 250px;
  width: 180px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  position: relative;
  z-index: 0;
}
:checked + .lb_template {  
  border: 3px solid var(--bs-primary);
}
:checked + .lb_template:before {
  content: "✓";
  background-color: var(--bs-primary);
  transform: scale(1);
}
:checked + .lb_template img {
  transform: scale(0.9);
}

.color_plantilla{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 5px solid #dbdee8;
    background: var(--clr);
}

.img_bg_fix{
    height: 1500px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.bb_none{
    border-bottom: 0px;
}
.btn_modal_template{
    position: absolute;
    top: 35%;
    left: 25%;
    background-color: #0000004d !important;
    border-radius: 25%;
    height: 80px;
}
.btn_modal_template:hover{
    background-color: #00000070 !important;
}
.csr_pointer{
    cursor: pointer;
}
/*Card dashboard*/
.container_dash{
    position: relative;
    display: flex;
    justify-content: space-around;
/*    align-items: center;*/
    flex-wrap: wrap;
}
.container_dash .card{
/*    width: 320px;*/
    width: 100%;
    height: 380px;
    max-height: 380px;
    margin: 10px;
    padding: 30px;
    border-radius: 40px;
    background: #ffffff;
    box-shadow: -6px -6px 20px rgba(255,255,255,1),
                6px 6px 20px rgba(0,0,0,0.1);
}
.container_dash .card:hover{
    box-shadow: inset -6px -6px 10px rgba(255,255,255,0.5),
                inset 6px 6px 20px rgba(0,0,0,0.05);
}
.container_dash .card .imgBx{
    position: relative;
    text-align: center;
}
.container_dash .card .imgBx img{
    max-width: 220px;
    max-height: 250px;
    width: 220px;
    height: 250px;
}
.container_dash .card .contentBx{
    position: relative;    
    text-align: center;
}
.container_dash .card .contentBx h2{
    color: #000000;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.container_dash .card .contentBx p{
    color: #000000;
}
.container_dash .card .contentBx a{
    display: inline-block;
    padding: 10px 20px;    
    border-radius: 40px;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    box-shadow: -4px -4px 15px rgba(255,255,255,1),
                4px 4px 15px rgba(0,0,0,0.1);
}
.container_dash .card .contentBx a:hover{
    box-shadow: inset -4px -4px 10px rgba(255,255,255,0.5),
                inset 4px 4px 10px rgba(0,0,0,0.1);
}
.container_dash .card a:hover span{
    align-items: center;
    display: flex;
    transform: scale(0.98);
}
.container_dash .card a span{
    align-items: center;
    display: flex;
}
.container_dash .card a span ion-icon,
.container_dash .card a span svg,
.container_dash .card a span i{
    font-size: 24px;
}
.container_dash .card:hover .imgBx,
.container_dash .card:hover .contentBx{
    transform: scale(0.98);
}
.fliph{
    transform: rotateY(180deg);
}
.container_slider{
    max-width: 1200px;
    width: 95%;
}
.slider-wrapper{
    position: relative;
}
.slider-wrapper .slide-button{
    position: absolute;
    top: 50%;
    height: 50px;                                        
    color: #fff;
    border: none;
    outline: none;
    background: var(--bs-primary);
    font-size: 2.2rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%); 
    z-index: 2;
}
.slider-wrapper .slide-button:hover{
    background: #444;
}
.slider-wrapper .slide-button#prev-slide{
    left: -20px;
    display: none;
}
.slider-wrapper .slide-button#next-slide{
    right: -20px;
}
.slider-wrapper .image-list{
    display: grid;
    overflow-x: auto;
    scrollbar-width: none;
    grid-template-columns: repeat(10,1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.slider-wrapper .image-list::-webkit-scrollbar{
    display: none;
}
.slider-wrapper .image-list .image-item{
    height: 250px;
    width: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
}
.container_slider .slider-scrollbar{
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
}
.slider-scrollbar .scrollbar-track{
    height: 10px;
    width: 100%;
    background: #8706FF57;
    position: relative;
    border-radius: 4px;
    z-index: 0;
}
.slider-scrollbar:hover .scrollbar-track{
    height: 14px;
}
.scrollbar-track .scrollbar-thumb{
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--bs-primary);
    border-radius: inherit;
    cursor: grab;
    z-index: 2;
}
.scrollbar-track .scrollbar-thumb:active{
    cursor: grabbing;
    height: 16px;
    top: -2px;
}
.scrollbar-track .scrollbar-thumb::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
}
@media(max-width:1023px){
    .slider-wrapper .slide-button{
        display: none!important;
    }
    .slider-wrapper .image-list{
        gap: 10px;
        margin-bottom: 15px;
    }
    .slider-scrollbar .scrollbar-thumb{
        width: 20%;
    }
}
.phone_preview{
    position: relative;
    width: 300px;
    height: 600px;
    background: #121212;
    border-radius: 40px;
}
.screen{
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 6px;
    left: 6px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}
.screen::before{
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.05);
    transform: skewX(-15deg);
    z-index: 1;
}
.screen_content{
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    z-index: 9;
    position: relative;
}
.screen_content_img{
    width: 100%;  
    object-fit: cover;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
/*
    transform: translateX(-27px);
    scale: 1.3 1;
*/
}
/*
.screen img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}*/
.alert_success_small{
    border-radius: 15px;
    background: #28a754de;
    margin: 10px;
    padding: 10px;
    color: white;
    font-weight: 600;
    display: none;
}
.p-modal-content{
    padding: 15px 50px;
}
.main_register_type{
    height: 100vh;
}
.register_type_div{    
    background: white;
    border-radius: 20px;
    padding: 80px;
    scale:1;
    transition: scale 0.5s ease;
}
.register_type_div:hover{
    scale:1.2;
}
.register_type_div i{
    font-size: 80px;
}
.register_type_div span.plan{
    margin-top: 20px;
    font-size: 30px;
    font-weight: 600;
}
.register_type_div span.plan_cost{
    margin-top: 20px;
    font-size: 20px;    
}    
.cls_def_media{
    overflow: hidden;   
}
.cls_def_media img{
    max-height: 500px!important;
    height: 500px!important;
}
.nav_main .nav-item:hover .nav-link.active{
    color: black!important;
}
.nav_main .nav-item .nav-link.active:hover{
    color: black!important;
}
.nav_main .nav-item:hover .nav-link{
    color: white!important;
}
.nav_main .nav-item .nav-link:hover{
    color: white!important;
}
.team_main_container{
    padding: 24px;
    width: 100vw;
}
.table_team thead tr th{
    padding: 15px 50px!important;
}
.table_team tbody tr td{
    padding: 15px 50px!important;
    vertical-align: middle;
}
.address_list{
    width: 100%;
    list-style: none;
    padding: 0;
    margin-top: 1px;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
}
.address_list li{
    font-size: 12px;
    padding: 5px;
    border-bottom: 1px solid #dfdfdf;
}
.address_list li:hover{
    cursor: pointer;
    background-color: #dfdfdf;
    border-radius: 5px;
}
.loading_address_list{
    text-align: center;
}