
/*@font-face {*/
/*    font-family: 'Manrope';*/
/*    src: url(../../public/fonts/Manrope-VariableFont_wght.ttf);*/
/*}*/

@font-face {
    font-family: 'Manrope';
    src: url(/fonts/Manrope-ExtraLight.woff2?28ade8c6fbf418788629d3e56515ad8d) format('woff2'),
    url(/fonts/Manrope-ExtraLight.woff?3b36f8f27500529d01262e7febb6523d) format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/fonts/Montserrat-Bold.woff2?c4adaa9afbc79b3fc25e9a5b8e64d8ab) format('woff2'),
    url(/fonts/Montserrat-Bold.woff?c3152b4bca72e5fa0f1d9f12fbd88d80) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(/fonts/Montserrat-Regular.woff2?b0463f53f41af9e523ee7952b74db9c6) format('woff2'),
    url(/fonts/Montserrat-Regular.woff?28d1cd8f0d64ab4e8e273db98e332bde) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Base styles */
html {
    background-color: #212028;
}
body {
    font-family:'Manrope','Arial', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
    height: 100%;
    font-size: 16px;
    width: 100%;
}
:root {
    --color-purple: #786CE2;
    --margin-left: calc((100vw - 1136px)/2);
    --margin-prev-slick:calc(((100vw - 1136px)/2) + 56px);
    --bg-red-gradient: linear-gradient(-52deg, #FF4254 0%, #FF4254 100%);
  }
  
h1, 
h2, 
h3,
p {
    margin: 0;
    padding: 0;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
}
h2 {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;
}
h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}
.sun_wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #212028;
}
.sun_header {
    width: 100%;
    height: auto;
    min-height: 150px;
    background-color: #212028;
    background-image: url(/images/header_bg_low.webp?b1dd6b225c268b0dd66b865a09615a76);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.sun_header .menu_wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sun_header .menu_fixed {
    position: fixed;
    top: 0;
    z-index: 31;
    width: 100%;
    height: 85px;
    background-color: #212028;
    background-image: url(/images/header_bg_low.webp?b1dd6b225c268b0dd66b865a09615a76);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.sun_header nav {
    max-width: 1148px;
    height: 41px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sun_header nav .logo {
    display: block;
    width: 108px;
    height: auto;
}
.sun_header nav .logo img {
    width: inherit;
    height: inherit;
}
.sun_header .menu {
    flex: 1;
    display: flex;
    justify-content: center;
}
.sun_header .menu_item {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    margin-right: 12px;
    text-transform: lowercase;
}
.sun_header .dropdown {
    position: relative;
    margin-right: 16px;
}
.sun_header .mainmenubtn {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    position: relative;
    font-family: 'Manrope';
}
.sun_header .mainmenubtn::after {
    content: '';
    display: block;
    background-image: url(/images/arrow.png?8fda2da04e1f694de899339b5fd474bb);
    width: 14px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: scale(1, 1);
    transition: all 0.5s linear;
}
.sun_header .dropdown-child {
    max-height: 0px;
    overflow: hidden;
    min-width: 200px;
    position: absolute;
    background: linear-gradient(-45deg, #7A6DE4 0%, #5F5BCA 100%);
    transition: all  1s linear;
    padding: 0px 6px;
    border-radius: 12px;
}
.sun_header .dropdown-child .menu_item {
    margin-top: 12px;
}
.sun_header .dropdown-child .menu_item:last-child {
    margin-bottom: 20px;
}
.sun_header .dropdown:hover .dropdown-child {
    max-height: 400px;
    transition: all  1s linear;
    overflow: visible;
}
.sun_header .dropdown:hover .mainmenubtn::after {
    transform: scale(1, -1);
    transition: all 0.5s linear;
}
.sun_header .btn_end {
    display: flex;
}
.sun_button_comp {
    font-size: 16px;
    min-width: 96px;
    min-height: 41px;
    border-radius: 38px;
    padding: 0px 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #695CD1;
    border: 0;
    outline: 0;
    margin: 16px 0;
}
.sun_button_comp.wa {
    min-width: 125px;
    background-color: #323338;
    margin-right: 16px;
}
.sun_header .sun_button_comp span{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sun_header .sun_button_comp img {
    width: 22px;
    height: 21px;
    margin-right: 6px;
}
.sun_header .banners {
    max-width: 1136px;
    height: auto;
    margin: 137px auto 72px;
    display: flex;
    gap: 31px;

}
.sun_header .banners_container_item {
    border-radius: 30px;
    background: linear-gradient(-45deg, #7A6DE4 0%, #5F5BCA 100% );
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 4px 19px 18px rgba(0, 0,0, 0.2);
}
.sun_header .banners_main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 390px;
    box-sizing: border-box;
    min-width: 778px;
}
.sun_header h1 {
    font-size: 60px;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 63.5px;
    margin-left: 30px;
    margin-top: 30px;
    color: #fff;
}
.sun_header h1::after {
    content: '';
    width: 75px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    margin-top: 18px;
    border-radius: 20px;
}
.sun_header h3 {
    margin: 20px 0px;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
}
.sun_header .header_sub {
    display: flex;
    justify-content: space-between;
    flex: 1;
}
.sun_header .header_desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin-left: 30px;
}
.sun_header .header_pic {
    display: flex;
    align-items: flex-end;
    width: 250px;
}
.sun_header .header_pic img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.sun_button_comp_red {
    background-color: #FB2F42;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 18px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}
.sun_header .secondary_banners {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
 .sun_header .banners_extra  {
    position: relative;
    min-height: 179px;
 }
 .sun_header .banners_extra  h2 {
    width: clamp(3ch, 65%, 15ch);
    margin-left: 20px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.06;
    color: #fff;
 }
 .sun_header .banners_extra div:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    height: 132px;
 }
 .sun_header .banners_extra div:last-child img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
    max-height: 100%;
 }
.sun_main {
    flex: 1 1 auto;
    background-color: #EBEBEB;
    border-top-left-radius: 38px;
    border-top-right-radius: 38px;
    margin-top: -20px;
}
.sun_main h2 {
    margin: auto;
    margin-top: 60px;
    margin-bottom: 10px;
    color: #000;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.05;
}
.sun_main p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    max-width: 1148px;
    margin-bottom: 60px;
}
.sun_main .tarif_container_wrapper {
    position: relative;
    margin-left: var(--margin-left);
}
.sun_main .tarif_container_cart {
    width: 87px;
} 
.sun_main .tarif_container_cart a {
    display: flex;
    width: 100%;
    background: var(--bg-red-gradient);
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 0.96;
    padding: 8px;
    box-sizing: border-box;
    letter-spacing: -0.5px;
    text-align: center;
}
.sun_main .tarif_container_cart a.cart_open_cart {
    height: 87px;
    margin-bottom: 5px;
} 
.sun_main .tarif_container_cart a.cart_open_cart img {
    width: 44px;
    height: auto;
}
.sun_main .tarif_container_cart .cart_wrapper {
    position: relative;
}
.sun_main .tarif_container_cart .cart_count {
    background: #fff;
    display: flex;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #FB2F42;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0px 4px 10.4px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -20px;
    left: -20px;
}
.sun_main .tarif_container {
    margin: 60px 0px;
    display: flex;
    gap: 20.5px;
    min-height: 389px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.sun_main .tarif_container_item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 25px;
    background-color: #ffffff;
    box-shadow: 0px 5px 41px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.tarif_container_table {
    width: 100%;
}
.sun_main .tarif_container_item.tariffs.tarif_desc_wrapper,
.sun_main .tarif_container_item.vod_only.tarif_desc_wrapper {
    width: 259px;
}
.tarif_container_item.tarif_desc_wrapper {
    position: relative;
}
.tarif_decription_absolute {
    position: absolute;
    width: calc(100% - 24px);
    display: none;
}
.sun_main .tarif_container_item .tarif_container_line {
    display: flex;
    margin-top: 4px;
    gap: 4px;
    justify-content: space-between;
}
.sun_main .tarif_container_item .tarif_container_line span {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 1.48;
}
.sun_main .tarif_container_item .tarif_container_line span img {
    width: 14px;
    height: 14px;
}
.sun_main .tarif_container_item .tarif_container_line span:first-child {
    width: 85%;
}

.sun_main .full_vod_only .tarif_container_item:first-child{
    min-width: 837px;
}

/*.sun_main .tarif_container_item.tarif_desc_wrapper{*/
/*    width: 599px;*/
/*}*/
.sun_main .slider_input_info_relative .sun_button_comp {
    margin: auto;
    width: 270px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.sun_main .slider_input_info_absolute p {
    font-size: 16px;
    color: #000;
    line-height: 1;
    margin-top: 22px;
    margin-bottom: 54px;
}
.sun_main .price_box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
}
.sun_main .price_box span {
    font-size: 20px;
    color: #000;
}
.sun_main .price_box span.line_through {
    font-size: 24px;
    font-weight: 800;
    color: #DDDDE2;
}
.sun_main .price_box span.bold {
    font-size: 48px;
    font-weight: 800;
}
.sun_main .slider_input {
    position: relative;
    width: 534px;
    margin: auto;
    height: 80px;
    margin-bottom: 40px;
}
.sun_main .slider_input .slider_line_grey {
    position: absolute;
    width: 100%;
    height: 7px;
    border-radius: 50px;
    background: #E3E2EA;
    bottom: 0;
}
.sun_main .slider_input .dws_input {
    position: absolute;
    bottom: -5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sun_main .slider_input .dws_input.days_180 {
    transform: translateX(140px);
}
.sun_main .slider_input .dws_input.days_360 {
    transform: translateX(300px);
}
.sun_main .slider_input .dws_input.days_720 {
   right: 0;
}
.sun_main .slider_input .dws_input span {
    font-size: 24px;
    color: #000;
    margin-bottom: 40px;
}
.sun_main .slider_input input {
    display: none;
}
.sun_main .slider_input .btn_plan {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E3E2EA;
    cursor: pointer;
    position: absolute;
    bottom: 0;
}
.sun_main .tarif_container_item.devices {
    width: 237px;
}
.sun_main .iptv_img {
    margin-bottom: 36px;
}
.sun_main .tarif_container_item.devices .iptv_img img {
    display: block;
    margin: auto;
    width: 190px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(2, 0,22, 0.1);
    margin-bottom: 6px;
}
.sun_main .tarif_container_item.devices .price_box span.bold {
    font-size: 24px;
}
.sun_main .iptv_extra_info {
    display: flex;
    gap: 6px;
    justify-content: center;
}
.sun_main .iptv_extra_info span {
    font-size: 12px;
    color: #000;
}
.sun_main .iptv_extra_info span.info_hover {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #605CCB;
    color: #fff;
    text-align: center;
    font-weight: 600;
    line-height: 20px;
    font-size: 15px;
    cursor: pointer;
}
.sun_main .info_hover div {
    position: absolute;
    max-height: 0px;
    overflow: hidden;
    background: linear-gradient(-45deg, #7A6DE4 0%, #5F5BCA 100%);
    top: -75px;
    left: -155px;
    width: 160px;
    height: 80px;
    padding: 0px;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: max-height 0.3s linear;
}
.sun_main .info_hover div p {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    margin: 12px;
    text-align: left;
}
.sun_main .info_hover:hover div {
    max-height: 200px;
    transition: max-height 0.3s linear;
}
.iptv_input_group .iptv_input_group_line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.iptv_input_group .iptv_input_group_line span {
    color: #000;
    font-size: 16px;
    flex: 1;
}
.iptv_input_group  input[name="iptv_group"] {
    display: none;
}
.iptv_input_group  input[name="vod_only"] {
    display: none;
}
.iptv_input_group .iptv_group_btn {
    display: block;
    background: #fff;
    border: 1px solid #31333D;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    cursor: pointer;
}
.iptv_input_group input[name="iptv_group"]:checked ~ .iptv_group_btn.active {
    background: #786CE2;
    border: 1px solid #786CE2;
}
.iptv_input_group input[name="iptv_group"] ~ .iptv_group_btn.active::after  {
    content: ' ';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(/images/icon_check.png?b54813b9019cd871849a7b137fe8c531);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.iptv_input_group input[name="vod_only"]:checked ~ .iptv_group_btn.active {
    background: #786CE2;
    border: 1px solid #786CE2;
}
.iptv_input_group input[name="vod_only"] ~ .iptv_group_btn.active::after  {
    content: ' ';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(/images/icon_check.png?b54813b9019cd871849a7b137fe8c531);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.sun_main .h2_left h2 {
    text-align: left;
}
.sun_main .dop_tarif_container_item {
    width: 360px;
    background: #fff;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sun_main .dop_tarif_container_item_title,
.sun_main .dop_tarif_container_item_sale,
.sun_main .dop_tarif_container_item_line {
    display: flex;
    width: 100%;
    align-items: flex-end;
    margin-bottom: 4px;
}
.sun_main .dop_tarif_container_item_sale .discount {
    width: 65%;
}
.sun_main .dop_tarif_container_item_sale .discount b {
    color: #FB2F42;
}
.sun_main .dop_tarif_container_item_sale div {
    flex: 1;
    display: flex;
    justify-content: end;
}
.sun_main .dop_tarif_container_item_sale div  span {
    font-size: 16px;
    font-weight: 500;
    color:#D0D0D0;
}
.sun_main .dop_tarif_container_item_sale div  span b {
    color: var(--color-purple);
    font-weight: 800;
}
.sun_main .dop_tarif_container_item_line span {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.38;
}
.sun_main .dop_tarif_container_item_title h3,
.sun_main .dop_tarif_container_item_line span:first-child {
    width: 75%;
}
.sun_main .dop_tarif_container_item_body {
    margin: 16px auto;
    width: 100%;
}
.sun_main .dop_tarif_container_item_line span:last-child {
    flex: 1;
    text-align: center;
}
.sun_main .dop_tarif_container_item_title span {
    flex: 1;
    text-align: end;
    font-size: 14px;
}
.sun_main .dop_tarif_container .sun_button_comp {
    width: 171px;
    margin: 16px auto 0;
}
.sun_main .dop_tarif_wrapper {
    margin-left: var(--margin-left);
}
.sun_main .dop_tarif_container {
    margin: 34px auto;
}
.sun_main .dop_tarif_container {
    position: relative;
}
.slick-track{
    display: flex;
    gap: 28px;
}
.slick-list {
    overflow: hidden;
}
.sun_main .dop_tarif_container .slick-arrow,
.sun_beneficios_slider .slick-arrow
 {
    position: absolute;
    top: -60px;
    right: 0;
    z-index: 10;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    width: 40px;
    height: 40px;
    font-size: 0;
    border-radius: 50px;
    background-size: 13px auto;
    background-position-y: 50% ;
    background-repeat: no-repeat;
    cursor: pointer;
}
.sun_main .dop_tarif_container .slick-arrow.slick-prev,
.sun_beneficios_slider .slick-arrow.slick-prev {
    background-image: url(/images/slick_prev.svg?ce0101abed08c48eacf5e12d630a89a6);
    background-position-x: 43%;
    background-color: #CDCDCD;
    right: var(--margin-prev-slick);
}
.sun_main .dop_tarif_container .slick-arrow.slick-next,
.sun_beneficios_slider .slick-arrow.slick-next {
    background-image: url(/images/slick_next.svg?954fa897ac6d13958d69e217ebad5fa1);
    background-position-x: 57%;
    background-color:var(--color-purple);
    right: var(--margin-left);
}
.sun_main .sun_testing_free {
    display: flex;
    max-width: 1136px;
    height: auto;
    padding: 24px;
    margin: 56px auto;
    background-color: #212028;
    box-sizing: border-box;
    border-radius: 25px;
    box-shadow: 0px 5px 41.4px rgba(0,0,0,0.1);
    color: #ffffff;
}
.sun_testing_free_info {
    flex: 1;
}
.sun_main .sun_testing_free p {
    color: #ffffff;
    margin: 12px 0px 0px;
    width: auto;
    font-size: 16px;
    text-align: left;
}
.sun_testing_free_btn {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.sun_button_comp.testing_btn {
    width: 255px;
    color: #000;
    background: #FDFBFE;
}
.sun_main .sun_beneficios_wrapper {
    background-color: #ffffff;
    padding: 56px 0px;
}
.sun_main .sun_beneficios_wrapper h2 {
    margin-bottom: 60px;
    margin-top: 0px;
}
.sun_main .sun_beneficios_container {
    margin-left: var(--margin-left);
}
.sun_main .sun_beneficios_container h2 {
    text-align: left;
}
.sun_beneficios_slider {
    display: flex;
    gap: 21px;
    position: relative;
}
.sun_beneficios_slider_item {
    position: relative;
    width: 275px;
    height: 255px;
    display: flex;
    align-items: flex-end;
}
.sun_beneficios_slider_img_abs {
    position: absolute;
    top: 0;
    width: 160px;
    height: 160px;
    left: 0;
    right: 0;
    margin: auto;
}
.sun_beneficios_slider_img_abs img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.sun_beneficios_slider_card {
    width: 100%;
    height: 217px;
    background-color: #EEEFF0;
    border-radius: 30px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
}
.sun_beneficios_slider_card p {
    margin: 0;
    line-height: 1.05;
    width: 100%;
}
.sun_text {
    background-color: var(--color-purple);
    padding: 40px 0px;
}
.sun_text p {
    margin: 0px auto;
    max-width: 1136px;
    font-size: 20px;
    line-height: 1.05;
    color: #fff;
}
.sun_footer {
    width: 100%;
    min-height: 260px;
    padding: 40px 0px;
    box-sizing: border-box;
}
.footer_info {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1230px;
}
.footer_info_item.card_flex_between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_info_item ul {
    list-style-type: none;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
    -webkit-margin-before: 0px;
            margin-block-start: 0px;
    -webkit-margin-after: 0px;
            margin-block-end: 0px;
}
.footer_info_item ul li {
    padding: 0px;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
    color: #fff;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.15;
    margin-bottom: 4px;
}
.footer_info_item ul li a {
    text-decoration: none;
    color: inherit;
}
.footer_info_item p {
    font-size: 12px;
    color: #fff;
    line-height: 1.15;
    font-weight: 200;
}
.footer_info_item div {
    display: flex;
}
.footer_info_item div img {
    height: 46px;
    width: auto;
}
.footer_info_item.last_logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.footer_info_item .footer_logo {
    width: 100%;
    display: block;
    text-align: right;
}
.footer_info_item .footer_logo img {
    width: 108px;
}
#dialog.base_modal_wrapper {
    align-items: center;
    bottom: 0;
    display: none;
    flex-direction: column;
    left: 0;
    outline: 0;
    overflow: auto;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
    position: fixed;
    right: 0;
    top: 85px;
    z-index: 30;
    background-color: rgba(0, 0, 0, .6);
}
.base_modal_component {
    flex: 1;
    height: 100%;
    overflow: auto;
    width: 300px;
    padding: 36px 12px 12px 12px;
    box-sizing: border-box;
    will-change: transform;
    background-color: #fff;
    align-self: flex-end;
    box-shadow: 0px 4px 12px rgba(2, 0, 22, 0.3);
}
#dialog.show.base_modal_wrapper {
    display: flex;
}
.base_cart_component {
    height: calc(100% - 32px);
    min-height: 720px;
    width: 100%;
}
.base_cart_component form {
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.base_cart_component .base_cart_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto 36px;
}
.base_cart_component .base_cart_title  img {
    width: 16px;
    cursor: pointer;
}
input.cart_check {
    display: none;
}
.cart_check_label {
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 14px;
    border: 0.5px solid #000;
}
input.cart_check:checked  ~ .cart_check_label  {
    background: #FB2F42;
    justify-content: center;
    align-items: center;
    border: 0.5px solid #FB2F42 ;
}
input.cart_check:checked  ~ .cart_check_label svg {
    width: 12px;
    height: 9px;
}
.row_cart {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}
.row_cart span.tarif_name {
    display: block;
    width: 140px;
}
.row_cart .price {
    font-weight: 600;
    flex: 1;
    text-align: right;
}
.row_cart .sub_check {
    flex: 1;
    display: flex;
    justify-content: space-between;
    margin-left: 8px;
}
.base_cart_component .cart_footer .sun_button_comp_red {
    width: 100%;
    cursor: pointer;
}
.base_cart_component .cart_footer .row_cart {
    justify-content: flex-end;
}
.base_cart_component .cart_footer .row_cart .tarif_name {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}
.quantity_inner {
    display: flex;
    background-color: #F8F8F8;
    height: 24px;
    border-radius: 20px;
    align-items: center;
    padding: 0px 4px;
}
.quantity_inner button {
    display: flex;
    outline: 0;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 16px;
    border: 0.5px solid #E5E7EB;
    cursor: pointer;
    font-family: 'Manrope';
 }
 .quantity_inner button.bt_minus {
    background: rgba(255, 255, 255, 0.5);
 }
 .quantity_inner button.bt_plus {
    background: rgba(255, 255, 255, 1);
 }
 .quantity_inner .quantity  {
    width: 10px;
    border: 0;
    outline: 0;
    display: block;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-family: 'Manrope';
  }
  .modal {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 32;
    background-color: rgba(0, 0, 0, .6);
    pointer-events: none;
    opacity: 0;
  }
  .modal_dialog {
    position: relative;
    margin: auto;
    background-color: #fff;
    border-radius: 25px;
    width: 502px;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 5px 58px rgba(0,0,0, 0.35);
  }
 .modal:target {
    opacity: 1;
    pointer-events: auto;
 }
 .open_modal_close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 33px;
    height: 33px;
    border-radius: 50px;
    background-color: var(--color-purple);
    right: 20px;
 }
 .modal_dialog_body {
    margin-top: 50px;
 }
 .modal_dialog_body h3 {
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
    width: 85%;
 }
 .modal_dialog_btn_box {
    display: flex;
    justify-content: space-between;
 }
 .modal_dialog_btn_box .sun_button_comp {
    margin-bottom: 20px;
    width: 267px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
 }
 .modal_dialog_btn_box .sun_button_comp_red {
    width: 177px;
    padding: 0px 17px;
 }
 .submit_disable {
    background-color: #FFB5BB;
    pointer-events: none;
 }

 .slider_line_purple {
    transform-origin: 0 0;
    transform-style: flat;
    width: 0%;
    will-change: transform;
    background: linear-gradient(90deg, #617FF1 0%, #B1C1EF 100%);
    height: 7px;
    bottom: 0;
    position: absolute;
    border-radius: 50px;
    z-index: 1;
    pointer-events: none;
 }
 input[name="slider"]:checked  ~ label.btn_plan {
    width: 24px;
    height: 24px;
    background: #605CCB;
    filter: blur(17px);
    bottom: -3px;
    z-index: 1;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 50%;
 }
 .label_blur_overlay {
    opacity: 0;
 }
 input[name="slider"]:checked  ~ .label_blur_overlay {
    position: absolute;
    opacity: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    bottom: -3px;
    background: #786CE2;
    box-shadow: 0px 4px 13.6px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
 }
#btn_plan1:checked ~  .slider_line_purple  {
    width: 7%;
}
#open_burger_menu,
label[for="open_burger_menu"] {
    display: none;
}
.mob_wa {
    display: none;
}
.iptv_extra_info_mob {
    display: none;
}
.beneficios_slider_item_wrapper {
    display: flex;
    gap: 21px;
}
.sun_button_comp.sun_button_comp_red:hover {
    background-color: #C92D3C;
    transition: background-color 0.3s ease-in;
}
.modal_test_free {
    width: 718px;
}
.modal_test_free form {
    width: 96%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.input_tel_number {
    display: block;
    width: 200px;
    height: 41px;
    border-radius: 38px;
    border: 0.5px solid #CDCDCD;
    outline: 0;
    font-family: 'Manrope';
    font-size: 16px;
    text-align: center;
    padding: 6px 12px;
    box-sizing: border-box;
    margin: 16px auto;
}
.width_200px {
    display: block;
    width: 200px;
}
.modal_dialog_body p {
    width: 96%;
    margin: auto; 
}
.order_container {
    width: 80%;
    max-width: 1138px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.order_cart_part {
    width: 65%;
}
.order_body_cart_table {
    margin: 40px auto;
}
.pay_cart_part {
    flex: 1;
}
.cart_body.order_page {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.cart_body.order_page .row_cart,
.cart_body.order_page .sub_check {
    gap: 24px;
}
.cart_body.order_page .row_cart span.tarif_name {
    width: 250px;
}
.bg_border_cart {
    background-color: #fff;
    border-radius: 25px;
    padding: 20px;
    box-sizing: border-box;
}
.order_footer_cart {
    border-top: 1px solid #CCCCCC;
}
.order_footer_cart_click {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 24px;
}
.order_footer_cart_click span {
    color: #131313;
    font-weight: 200;
}
.order_footer_cart_click img {
    width: 24px;
    height: 24px;
}
.flex_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.order_footer_cart, 
.order_body_cart {
    width: 100%;
}
.order_footer_cart .row_cart {
    margin-top: 20px;
    margin-bottom: 10px;
}
.color_red {
   color: #FB2F42;
}
.pay_cart_agree {
    width: 100%;
    background-color: #212028;
}
.pay_cart_agree_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pay_cart_agree_body .sun_button_comp.testing_btn {
    background-color: #FB2F42;
    color: #fff;
}
.pay_cart_agree_part {
    padding-left: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}
#check_agree {
    display: none;
}
.check_agree {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    border-radius: 14px;
    border: 0.5px solid #000;
    background-color: #fff;
}
#check_agree:checked ~ .check_agree {
    background-color: var(--color-purple);
    border-color: var(--color-purple);
}
.pay_cart_agree_part a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 200;
}
.sun_main .tarif_container.checked_btn_plan1 .tarif_container_table.checked_btn_plan1,
.sun_main .tarif_container.checked_btn_plan2 .tarif_container_table.checked_btn_plan2,
.sun_main .tarif_container.checked_btn_plan3 .tarif_container_table.checked_btn_plan3,
.sun_main .tarif_container.checked_btn_plan4 .tarif_container_table.checked_btn_plan4 {
    display: block;
}
.sun_main .tarif_container.checked_btn_plan1 .slider_line_purple.checked_btn_plan1 {
    width: 6%;
}
.sun_main .tarif_container.checked_btn_plan2 .slider_line_purple.checked_btn_plan2 {
    width: 33.2%;
}
.sun_main .tarif_container.checked_btn_plan3 .slider_line_purple.checked_btn_plan3 {
    width: 63.2%;
}
.sun_main .tarif_container.checked_btn_plan4 .slider_line_purple.checked_btn_plan4 {
    width: 88.2%;
}
.full_tariffs .slider_input_info_absolute {
    display: none;
}
.sun_main .full_tariffs .tarif_container.checked_btn_plan1 .slider_input_info_absolute.checked_btn_plan1,
.sun_main .full_tariffs .tarif_container.checked_btn_plan2 .slider_input_info_absolute.checked_btn_plan2,
.sun_main .full_tariffs .tarif_container.checked_btn_plan3 .slider_input_info_absolute.checked_btn_plan3,
.sun_main .full_tariffs .tarif_container.checked_btn_plan4 .slider_input_info_absolute.checked_btn_plan4 {
    display: block;
}


.sun_button_comp:hover {
    background-color: #4D41B5;
    transition: background-color 0.3s ease-in;
}
.sun_button_comp.testing_btn:hover {
    background-color: #EEEFF0;
    transition: background-color 0.3s ease-in;
}
.sun_main .tarif_container_item .tarif_container_line span:nth-of-type(2) {
    text-align: right;
}
.sun_beneficios_slider.slick-initialized.slick-slider .slick-track {
    gap: 12px;
}
.close_modal {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}
.sun_header .minor_page_titles {
    display: block;
    height: auto;
    max-width: 1136px;
    margin: 125px auto 72px;
}
.sun_header .minor_page_titles h1, 
.sun_header .minor_page_titles h2 {
    color: #ffff;
    text-align: center;
    margin: 28px auto;
}
.sun_header .minor_page_titles h1:after {
    display: none;
}
.sun_header .minor_page_titles h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.05;
}
.sun_header .minor_page_titles h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}
.about_wrapper {
    width: 100%;
    height: 100%;
    padding: 20px 0px;
}
.about_container {
    max-width: 1136px;
    margin: 0 auto;
}
.about_container p {
    text-align: left;
    font-size: 20px;
    line-height: 1.2;
    margin: 36px 0px;
}
.about_container .img_float_right {
    float: right;
    width: 430px;
    height: auto;
    border-radius: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
}
.about_container p a {
    color: var(--color-purple);
}
.about_container ul li {
    font-size: 20px;
    line-height: 1.2;
}
.about_container .span_bold {
    display: block;
    font-weight: 800;
}

/*** 06/12/24 ***/
.flex_template_column {
    margin-top: 36px;
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
}
.flex_template_column p {
    width: 100%;
    text-align: center;
}
.flex_template_column_item {
    width: auto;
    height: auto;
}
.input_column_item {
    display: none;
}
.flex_template_column_item_box {
    max-height: 0px;
    overflow: hidden;
}
.label_column_item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-top: 30px;
    box-sizing: border-box;
    width: 366px;
    align-items: center;
    height: 238px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 5px 41.4px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.label_column_item .img_column_item {
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
} 
.label_column_item .img_column_item img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.label_column_item span {
    width: 200px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}
.input_column_item:checked  ~ .flex_template_column_item_box {
    max-height: 1800px;
    overflow: visible;
}
.label_column_item svg {
    transition: transform 0.2s ease-in;
}
.input_column_item:checked  + .label_column_item svg {
    transform: scale(1, -1);
    transition: transform 0.2s ease-in;
}
.flex_template_column_item_detales {
    width: 366px;
    height: auto;
    padding-top: 20px;
    position: relative;
    margin: 20px 0px;
}
.item_detales_plate {
    width: 100%;
    height: auto;
    padding: 20px;
    padding-top: 36px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.item_detales_plate  span {
    line-height: 1.1;
}
.item_detales_plate  span a {
    color: var(--color-purple);
}
.item_detales_number {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: var(--color-purple);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
a.label_column_item {
    justify-content: center;
    gap: 20px;
}
.p_attencion {
    display: flex;
    width: 100%;
    max-width: 1136px;
    height: auto;
    box-sizing: border-box;
    border-radius: 25px;
    background-color: #E2E2E2;
    padding: 0px 20px;
    justify-content: center;
    margin: auto;
    margin-top: 36px;
}
.p_attencion p {
    margin: 20px 0px;
    text-align: center;
    color: #757575;
    line-height: 1.05;
    width: 95%;
}
.player_img {
    width: 714px;
    margin: 36px auto;
}
.player_img img {
    width: 100%;
}
.player_setup_part {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.player_flex_plates {
    display: flex;
    max-width: 1136px;
    margin: 30px auto;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.player_flex_plates_item {
    display: flex;
    width: 272px;
    height: 110px;
    background-color: #E2E2E2;
    border-radius:  25px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 41.4px rgba(0, 0, 0, 0.1);
}
.player_flex_plates_item img {
    max-width:190px;
    max-height: 61px;
}
.p_atencion_negro {
    background-color: #000;
    margin-bottom: 36px;
}
.p_atencion_negro p {
    color: #fff;
}
/*** 07/12/24 ***/ 
.open_modal_close {
    top: 20px;
}
.authentication_modals .modal_dialog {
    padding: 60px 20px;
}
.authentication_modals .modal_dialog .modal_dialog_body {
    margin-top: 0px;
}
.authentication_modals h3 {
    margin-bottom: 32px;
}
.authentication_forms {
    width: 400px;
    margin: 28px auto 0px;
    padding: 0px;
    box-sizing: border-box;
}
.aut_inputs {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 16px auto;
}
.aut_lablel {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.1;
    color: #CDCDCD;
    width: 100%;
    padding: 0px 19px;
}
.aut_input {
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    border: 1px solid #CDCDCD;
    border-radius: 38px;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 0px 19px;
}
.aut_input::-moz-placeholder {
    color: #CDCDCD;
    font-family: 'Manrope';
    font-weight: 200;
}
.aut_input:-ms-input-placeholder {
    color: #CDCDCD;
    font-family: 'Manrope';
    font-weight: 200;
}
.aut_input::placeholder {
    color: #CDCDCD;
    font-family: 'Manrope';
    font-weight: 200;
}
.aut_submit {
    width: 100%;
    height: 40px;
    border: 0;
    outline: 0;
    border-radius: 38px;
    background-color: #786CE2;
    color: #fff;
    font-family: 'Manrope';
    font-weight: 800;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none !important;

} 
.aut_btn {
    width: 100%;
    margin: 32px auto;
}
.aut_info {
    text-align: center;
    margin-top: 32px;
    font-weight: 800;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none !important;
}
.aut_info a {
    color: inherit;
}
.tel_inputs .aut_input{
    padding-left: 75px;
    border: 0;
}
.input_flag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    top:0px;
    left: 9px;
    height: 100%;
}
.aut_btn_disable {
    background-color: #E2E2E2;
}
.aut_inputs p {
    text-align: center;
}
.aut_inputs .inpt_icons {
    width: 30px;
    height: 30px;
    text-align: center;
    margin: auto;
}
.relative_input_box {
    position: relative;
    width: 100%;
    height: 40px;
    border: 1px solid #E2E2E2;
    border-radius: 38px;
}
.input_flag img {
    width: 20px;
}
/*** 18/12/24 ***/
.watch_flex_box {
    display: flex;
    gap: 16px;
    width: 100%;
    margin: 60px auto;
    justify-content: center;
    flex-wrap: wrap;
}
.watch_flex_item {
    display: block;
    width: 272px;
    height: 218px;
    background-color: #ffff;
    box-shadow: 0px 5px 41.4px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.watch_icon_box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.watch_icon_box p {
    text-align: center;
    margin: 0px;
}
.watch_icon_box div {
    width: 100%;
    height: 104px;
    text-align: center;
}
.watch_icon_box div img {
    -o-object-fit: contain;
       object-fit: contain;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
/*** 21/12/24 ***/ 
.sun_faq {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq_btn {
    width: auto;
}
.faq_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 162px;
    height: 41px;
    background:var(--bg-red-gradient);
    color: #ffffff;
    border-radius: 38px;
    text-decoration: none;
    margin: auto;
}
.sun_main .sun_testing_faq p {
    margin-top: 0px;
}
.solve_the_problem {
    width: 767px;
    margin: auto;
}
.form_solve_the_problem {
    width: 600px;
    margin: auto;
    height: auto;
    margin-top: 20px ;
}
.form_solve_the_problem .form_body {
    width: 100%;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0px 5px 40px rgba(0,0,0, 0.1);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 20px;
    box-sizing: border-box;
}
.form_solve_the_problem .form_body .input_tabs {
    display: none;
}
.form_body_nav {
    display: flex;
    width: 90%;
    margin: auto;
    justify-content: center;
    gap: 10px;
}
.form_body_nav label {
    display: block;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0px 4px 10.4px rgba(0, 0, 0, 0.2);
    background-color: #E2E2E2;
    color:#A6A6A6;
    text-align: center;
}
.solve_the_problem p {
    margin: 0px;
    text-align: center;
}
.form_body_fields {
    display: none;
}
#ask_a_question:checked ~ .ask_a_question {
    display: flex;
}
#ask_a_question:checked ~ .form_body_nav label[for="ask_a_question"] {
    background-color: var(--color-purple);
    color: #fff;
}
#change_of_operator:checked ~ .change_of_operator {
    display: flex;
}
#change_of_operator:checked ~ .form_body_nav label[for="change_of_operator"] {
    background-color: var(--color-purple);
    color: #fff;
}
.form_body_fields {
    flex-direction: column;
    width: 60%;
    margin: auto;
    margin-top: 40px;
}
.form_body_input {
    width: 100%;
    margin: 6px auto;
}
.form_body_input input,
.form_body_input select,
.form_body_input textarea {
    width: 100%;
    height: 44px;
    border-radius: 38px;
    border: 1px solid #A6A6A6;
    padding: 6px 12px;
    box-sizing: border-box;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    color: #000;
    font-family: 'Manrope';
    font-size: 16px; 
}
.form_body_input input::-moz-placeholder, .form_body_input textarea::-moz-placeholder {
    font-family: 'Manrope';
    font-weight: 400;
    color: #E2E2E2;
    font-size: 16px;
}
.form_body_input input:-ms-input-placeholder, .form_body_input textarea:-ms-input-placeholder {
    font-family: 'Manrope';
    font-weight: 400;
    color: #E2E2E2;
    font-size: 16px;
}
.form_body_input input::placeholder,
.form_body_input textarea::placeholder {
    font-family: 'Manrope';
    font-weight: 400;
    color: #E2E2E2;
    font-size: 16px;
}
.form_body_input select {
    background-image: url(/images/select_flag.png?2f49bc8549849ef2fd06adbb73e6f492);
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: 305px 18px;
}
.form_body_input textarea {
    height: 73px;
    border-radius: 25px;
}
.form_body_btn {
    margin: 40px auto;
    display: block;
    width: 186px;
    height: 41px;
    border-radius: 38px;
    border: 0;
    outline: 0;
    background: var(--bg-red-gradient);
    color: #fff;
    font-family: 'Manrope';
    font-size: 16px;
    box-shadow: 0px 4px 10.4px rgba(2, 0, 22, 0.3);
}
.form_input_tel {
    position: relative;
}
.form_input_tel input {
    padding-left: 46px;
}
.form_body_input span {
    font-size: 10px;
    width: 85%;
    display: block;
    color: #A6A6A6;
    line-height: 1.1;
    margin: 4px auto 0px;
}
#file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
}
.form_body_upload_item{
    display: block;
    width: 100%;
    height: 44px;
    border-radius: 38px;
    background-color: #EBEBEB;
    padding: 6px 12px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}
.form_body_upload_item div {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.form_body_upload_item div img {
    width: 22px;
}
.form_body_upload_item div span {
    font-size: 16px;
    text-align: left;
    font-family: 'Manrope';
    color: #000;
    flex: 1;
}
.contacts_phones {
    width: 100%;
    height: auto;
    background-color: #fff;
}
.contacts_phones_box {
    width: 1136px;
    margin: auto;
    padding: 40px 0px;
}
.wrapper_padding_none {
    padding: 0px;
}
.contacts_phones_link_box {
    width: auto;
    height: auto;
    margin: 20px 0px;
}
.contacts_phones_link_box a {
    text-decoration: none;
    color: #000;
    display: block;
    margin: 8px 0px;
}
.contacts_phones_wa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 41px;
    border-radius: 38px;
    padding: 0px 10px;
    background-color: #323338;
    text-decoration: none;
    color: #fff;
}
.contacts_phones_wa span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.contacts_phones_wa img {
    width: 22px;
}
.sun_header .btn_end {
    align-items: center;
}
.flex_template_column_itemtv .label_column_item {
    width: 272px;
}
.flex_template_column_itemtv  .flex_template_column_item_detales {
    width: 272px;
}
.flex_template_column:has(.flex_template_column_item_detales) {
    gap: 16px;
}


.avatar_container .icon_avatar  {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background-color: var(--color-purple);
    display: flex;
    justify-content: center;
    align-items: center;
}
.avatar_container .icon_avatar img {
    width: 22px;
}
.avatar_container {
    display: block;
    width: 53px;
    position: relative;
}
.avatar_container .icon_polygon {
    position: absolute;
    top: -72%;
    left: 0px;
    width: 36px;
}
.avatar_container .icon_polygon img {
    width: 100%;
}
.avatar_container #open_profile_menu {
    display: none;
}
.avatar_container label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.avatar_container svg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.2s ease-in;
}
.avatar_container article {
    position: absolute;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease-in;
    background-color: transparent;
    border-radius: 14px;
    right: 0px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease-in;
    width: 220px;
    margin-top: 17px;
}
.avatar_container article div:first-child {
   border-bottom: 1px solid #BEBEBE; 
   display: flex;
}
.avatar_container article span {
    width: 100%;
    display: block;
    font-weight: 500;
    margin: 16px 0px;
    text-align: center;
    padding: 0px 12px;
}
.avatar_container article div a {
    display:block;
    padding: 0px 20px;
    margin: 12px 0px;
    color: #000;
    text-decoration: none;
}
#open_profile_menu:checked ~ article {
    max-height: 200px;
    overflow: visible;
    transition: all 0.2s ease-in;
    background-color: #fff;
    box-shadow: 0px 5px 41.4px rgba(0,0,0,0.15);
}
#open_profile_menu:checked ~ svg {
    transform: scale(1,-1);
    transition: all 0.2s ease-in;
}
.profile_container {
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}
.profile_ul_menu {
    width: auto;
    margin: auto;
}
.profile_ul_menu ul {
    display: flex;
    list-style-type: none;
    gap: 16px;
    color: #000;
    margin: 0;
    margin-bottom: 42px;
    -webkit-padding-start: 0px;
            padding-inline-start: 0px;
    justify-content: center;
}
.profile_ul_menu ul .current_purple {
    color: var(--color-purple);
}
.profile_ul_menu ul li a {
    color: inherit;
    text-decoration: none;
}
.profile_data-label {
    position: absolute;
    right: 0;
    top: 65px;
    width: 227px;
    height: 106px;
    background-image: url(/images/label_bg.png?7dc168bad70a1d451bca81288ef44854);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.07));
}
.profile_data-label_info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}
.profile_data-label_info span {
    line-height: 1.1;
}
.profile_data-label_info b {
    font-weight: 800;
    font-size: 20px;
    color: var(--color-purple);
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none !important;
}
.profile_container h1 {
    text-align: center;
    margin: 42px auto;
    font-size: 24px;
    font-weight: 800;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none !important;
}
.profile_form {
    width: 600px;
    height: auto;
    margin: 42px auto;
}
.profile_input_detail {
    display: none;
}
.profile_labels_box {
    width: 100%;
    display: flex;
}
.profile_labels_box label {
    display: block;
    flex: 1;
    padding:12px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-sizing: border-box;
    color: #999999;
}
.profile_labels_box label span {
    font-weight: 800;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none !important;
}
.profle_part_relative {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.profle_part_relative .profile_form_change,
.profle_part_relative .profile_form_password {
    display: none;
}
#profile_details:checked ~ .profle_part_relative .profile_form_change {
    display: flex;
}
#profile_password:checked ~ .profle_part_relative .profile_form_password {
    display: flex;
}
#profile_details:checked ~ .profile_labels_box label[for="profile_details"],
#profile_password:checked ~ .profile_labels_box label[for="profile_password"]{
    background-color: #fff;
    color: var(--color-purple);
} 
#profile_password:checked ~  .profle_part_relative {
    border-top-right-radius: 0px;
    border-top-left-radius: 15px;
}
.profile_btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px;
    min-width: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-purple);
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    border: 0;
    font-size: 16px;
    font-weight: 400;
}
.profile_change_btn {
    border: 1px solid #999999;
    background: #ffff;
    color: #999;
    position: absolute;
    right: 20px;
    top: 20px;
}
.dws_profile_input {
    position: relative;
    width: 536px;
    height: 70px;
    display: flex;
    flex-direction: column;
    margin: 8px 0;
    border-radius: 10px;
    background: #fff;
}
.dws_profile_input  label {
    padding-left: 16px;
    padding-top: 8px;
    color: #999999;
    font-weight: 200;
}
.profile_form_body {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
}
.dws_profile_input input,
.dws_profile_input select {
    flex: 1;
    border: 0;
    outline: 0;
    color: #000;
    font-family: 'Manrope';
    font-size: 16px;
    padding: 0px 16px;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
}
.dws_profile_input select {
    width: 100%;
    background-color: #ffff;
    background-image: url(/images/select_flag.png?2f49bc8549849ef2fd06adbb73e6f492);
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: 505px 16px;
}
.profile_form_body .profile_save_btn {
    margin: 36px auto 20px;
    display: none;
}

.profile_form_body.save .profile_change_btn {
    display: none;
}
.profile_form_body.save .dws_profile_input {
    border: 1px solid #EEEFF0;
}
.profile_form_body.save .profile_save_btn {
    display: flex;
}
.password_container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
 }
 .password_container span {
    color: #999999;
 }
.password_container img {
    width: 18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
  }
.switch input {display:none;}

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999999;
    transition: .4s;
  } 
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 1px;
    bottom: 1px;
    background-color:#E0DEDE;
    transition: .4s;
  }
  input:checked + .slider {
    background-color: #54BE53;
  }
  input:checked + .slider:before {
    transform: translateX(20px);
  }
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .profile_table {
    margin: auto;
    border-spacing: 0px 4px;
    border-collapse: separate;
  }
  .profile_table th,
  .profile_table td {
    text-align: center;
    vertical-align: middle;
    padding: 8px 16px;
  }
  .readiness img {
    width: 18px;
  }
  .password_container.show_password {
    align-items: center;
  }
  .password_container.show_password span {
    color: #000;
  }
  .td_btn_action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 7px;
    background-color: #F14D5F;
    color: #fff;
    text-decoration: none;
  }
  .td_btn_action.action_cont {
    background-color: var(--color-purple);
  }
  .profile_table tbody tr {
    background-color: #fff;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
  }
  .profile_table tbody tr td:first-child {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px ;
  }
  .profile_table tbody tr td:last-child {
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px ;
  }
  .profile_table thead tr th {
    font-family: 'Manrope';
    font-weight: 400;
  }
  .profile_table_container .profile_btn {
    margin: 36px auto;
  }
  .profile_table tbody td.span_block span {
    display: block;
  }
  .profile_table tbody td .new_purchase {
    color: #54BE53;
  }
  .profile_table tbody td .extension {
    color: #786CE2;
  }
  .profile_container p {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .profile_container p a {
    color: var(--color-purple);
  }
  .search_block {
    margin: 16px auto;
  }
  .search_block form {
    width: 429px;
    height: 34px;
    display: flex;
    margin: 0 auto;
    border-radius: 7px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  }
  input.search {
    width: calc(100% - 54px);
    height: auto;
    background-color: #fff;
    border-top-left-radius:7px;
    border-bottom-left-radius:7px;
    border: 0;
    padding-left: 15px;
    font-family: 'Manrope';
    font-size: 16px;
    outline: 0;
  }
  input.submit {
    background: url(/images/search_icon.png?6db41a0baa01de36dd036a9178dcc367) center center/40% auto
      no-repeat #fff;
    border: 0;
    width: 54px;
    height: auto;
    border-top-right-radius:7px;
    border-bottom-right-radius:7px;
  }
  .select_block {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 16px auto;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .select_block select {
    width: 61px;
    height: 34px;
    border-radius: 7px;
    background-color: #fff;
    border: 0;
    padding: 5px;
    font-family: 'Manrope';
    font-size: 16px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background-image: url(/images/select_flag.png?2f49bc8549849ef2fd06adbb73e6f492);
    background-size: 12px 7px;
    background-repeat: no-repeat;
    background-position: 40px 15px;
    color: #000;
  }
  .comments img {
    width: 30px;
  }
  .profile_container_text {
    width: 800px;
    margin: auto;
  }
  .complaint_form {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-top: 42px;
  }
  .complaint_form .dws_profile_input {
    box-shadow: 0px 0px 6px rgba(0,0,0,0.1);
  }
  .complaint_form span {
    display: block;
    width: 536px;
    text-align: center;
    font-size: 16px;
    margin: 16px auto;
  }
  .dws_profile_input.textarea {
    height: 154px;
  }
  .dws_profile_input.textarea textarea {
    height: 117px;
    border-radius: 7px;
    border: 0;
    outline: 0;
    padding: 0px 16px;
  }
  .complaint_form .profile_btn {
    text-align: center;
    margin: 36px auto;
  }
  .select_block.test_select_block select {
    width: 141px;
    background-position: 118px 15px;
  }
  .test_profile_btn {
    margin: 36px auto;
  }
  .profile_table_container {
    margin: 36px auto;
  }
  .profile_container_text p span {
    color: #EB001B;
  }
  .cart_container {
    display: block;
    position: absolute;
    text-decoration: none;
    color: #FB2F42;
    top: -10px;
    right: 20px;
  }
  .profile_cart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 30px;
    border-radius: 7px;
    background: var(--bg-red-gradient);
  }
  .profile_cart img {
    width: 22px;
  }
  .cart_container_relative {
    position: relative;
  }
  .profile_cart_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
  }
  .profile_cart_cont span {
    font-size: 14px;
  }
  .profile_btn:hover,
  .td_btn_action.action_cont:hover {
    background-color: #4D41B5;
    transition: background-color 0.3s ease-in;
  }
  .td_btn_action:hover {
    background-color: #FB2F42;
    transition: background-color 0.3s ease-in;
  }

  .full_vod_only .tarif_container_table h2{
      margin: 0;
  }

.full_vod_only .tarif_container_table h4 {
    margin: 10px 0;
    font-size: 15px;
}
.full_vod_only .tarif_container_table h4.danger {
    color: #ff4254;
}

:root {
    --color-purple: #786CE2;
    --margin-left: calc((100vw - 1138px)/2);
    --margin-prev-slick:calc(((100vw - 1138px)/2) + 56px);
    --bg-red-gradient: linear-gradient(-52deg, #FF4254 0%, #FF4254 100%);
  }
@media(max-width: 1366px) {
    .sun_main .tarif_container {
        position: relative;
    }
    .sun_main .tarif_container_cart {
        position: absolute;
        right: 0;
        top: -140px;
    }
    .about_container {
        max-width: 90%;
    }
    .sun_header .minor_page_titles {
        max-width: 90%;
    }
    /*** 06/12/24 ***/
    .p_atencion_negro,
    .player_flex_plates {
        max-width: 90%;
    }

}
@media(max-width: 1150px) {
    .sun_header nav {
        width: 90%;
    }
    .sun_header .menu_wrapper  {
        flex-direction: column;
        position: fixed;
        right: 0;
        width: 262px;
        background: #FFFFFF;
        top: 0;
        height: 0px;
        overflow: hidden;
        border-top-left-radius: 30px;
        overflow: hidden;
        border-bottom-left-radius: 30px;
        box-shadow: -4px 4px 12px rgba(2, 0, 22, 0.3);
        box-sizing: border-box;
        align-items: flex-end;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
    }
    .sun_header .menu {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        margin-top: 100px;
    }
    .sun_header .btn_end {
        margin-bottom: 20px;
    }
    .sun_header .menu_item {
        color: #000;
        display: block;
        margin-bottom: 40px;
        font-size: 18px;
    }
    .sun_header .dropdown {
        display: flex;
        flex-direction: column;
    }
    button.mainmenubtn.menu_item {
        text-align: right;
        margin-bottom: 0px;
    }
    .sun_header .dropdown-child {
        position: static;
        background: transparent;
    }
    .sun_header .dropdown-child .menu_item {
        text-align: right;
        margin-bottom: 0;
    }
    label[for="open_burger_menu"]  {
        display: block;
        position: fixed;
        right: 12px;
        z-index: 10;
        cursor: pointer;
    }
    .bar {
        display: block;
        background-color: #ffff;
        width: 40px;
        height: 4px;
        margin: 10px auto;
        transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
    }
    #open_burger_menu:checked ~  .menu_wrapper {
        height: 100vh;
        height: calc(var(--vh, 1vh)* 100);
    }
    #open_burger_menu:checked ~ label .bar.top {
        transform: translateY(15.384px) rotateZ(45deg);
        background-color: var(--color-purple) ;
    }
    #open_burger_menu:checked ~ label .bar.bottom {
        transform: translateY(-12px) rotateZ(-45deg);
        background-color: var(--color-purple) ;
    }
    #open_burger_menu:checked ~ label .bar.middle {
        width: 0px;
    }
    .sun_button_comp.wa.mob_wa {
        display: flex;
    }
    .sun_header .banners {
        max-width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .sun_header .banners_main {
        width: 777px;
    }
    .sun_header .secondary_banners {
        flex-direction: row;
        gap: 30px;
    }
    .sun_header .banners_container_item {
        width: 373.5px;
    }
    .sun_main .tarif_container {
        width: 599px;
        margin: auto;
        flex-wrap: wrap;
        background: #fff;
        border-radius: 20px;
        gap: 0px;
    }
    .sun_main .tarif_container_item.tarif_desc_wrapper.tariffs {
        height: 222px;
        order: 2;
        width: 599px;
    }
    .sun_main .full_vod_only .tarif_container_item:first-child{
        order: 1;
        min-width: 100%;
        height: auto;
    }
    .sun_main .tarif_container_item:not(.tarif_desc_wrapper).tariffs {
       order: 1;
       width: 100%;
    }
    .sun_main .tarif_container_item.devices {
        order: 3;
        width: 599px;
        margin: 20px auto 80px;
    }
    .sun_main .tarif_container_item {
        box-shadow: none;
    }
    .tarif_decription_absolute {
        width: 534px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .sun_main .tarif_container_item .tarif_container_line {
        justify-content: space-between;
    }
    .tarif_container_item.iptv_wrapper .tarif_container_table {
        position: relative;
        width: 534px;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }
    .tarif_container_item.iptv_wrapper .price_box {
        position: absolute;
        top: 0px;
        left: 247px;
    }
    .iptv_input_group {
        margin-top: 55px;
    }
    .sun_main .iptv_extra_info {
        display: none;
    }
    .iptv_extra_info_mob {
        display: block;
    }
    .sun_main .tarif_container_wrapper {
        margin-left: auto;
    }
    .sun_main .tarif_container_cart {
        top: 0px;
        right: -100px;
    }
    .sun_main .tarif_container_item.devices .iptv_img img {
        box-shadow: none;
    }
    .sun_main .iptv_img {
        width: 200px;
        margin-bottom: 0px;
        box-shadow: 0px 4px 12px rgba(2, 0, 22, 0.1);
        background: #FBFCFF;
        border-radius: 10px;
    }
    .iptv_extra_info_mob p {
        font-size: 16px;
        line-height: 1;
        margin: 12px;
        color: var(--color-purple);
        text-align: left;
    }
    .sun_main .slider_input_info_relative .sun_button_comp {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .sun_main .sun_testing_free {
        width: 777px;
    }
    .sun_text p {
        max-width: 777px;
    }
    .sun_main .dop_tarif_wrapper,
    .sun_main .sun_beneficios_container {
        margin-left: 0px;
    }
    .sun_main .dop_tarif_container .slick-arrow.slick-prev, 
    .sun_beneficios_slider .slick-arrow.slick-prev {
        right: 0;
    }
    .sun_main .dop_tarif_container .slick-arrow.slick-next, .sun_beneficios_slider .slick-arrow.slick-next {
        right: 0;
    }
    .sun_main .h2_left h2 {
        margin-left: 5%;
    }
    .sun_main .dop_tarif_container {
        width: 90%;
    }
    .slick-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 20px auto;
    }
    .slick-dots li button {
        opacity: 0;
    }
    .slick-dots li {
        list-style-type: none;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #CDCDCD;
        cursor: pointer;
    }
    .slick-dots li.slick-active {
        background-color: var(--color-purple);
    }
    .sun_beneficios_slider {
        display: block;
        width: 90%;
        margin: auto;
    }
    .sun_main .sun_beneficios_container h2 {
        margin-left: 5%;
    }
    .footer_info {
        width: 90%;
        margin: auto;
        flex-wrap: wrap;
    }
    .footer_info_item.last_logo {
        width: 100%;
        align-items: flex-start;
    }
    .sun_header .banners_extra h2 {
        width: clamp(3ch, 60%, 15ch);
        margin-left: 6px;
        margin-top: 12px;
    }
    .footer_info_item .footer_logo {
        text-align: left;
    }
    .sun_header .menu_fixed {
        height: 75px;
    }
}
@media(max-width: 965px) {
    .flex_column {
        width: 100%;
    }
    .profile_table thead {
        display: none;
    }
    .profile_table tr,
    .profile_table td {
        display: block;
    }
    .profile_table {
        width: 320px;
    }
    .profile_table tr {
        margin-bottom: 8px;
    }
    .profile_table td {
        text-align: right;
    }
    .profile_table td.table_download {
        text-align: center;
    }
    .profile_table td:before {
        content: attr(data-label);
        float: left;
        font-weight: 500;
    }
    .password_container {
        justify-content: right;
    }
    .profile_table tbody tr {
        border-radius: 7px;
    }
    .profile_data-label {
        top: -20px;
        width: 200px;
        height: 94px;
    }
    .profile_data-label_info span {
        font-size: 14px;
    }
    .profile_data-label_info b {
        font-size: 16px;
    }
    .profile_ul_menu {
        margin-top: 86px;
    }
    .profile_ul_menu ul {
        white-space: nowrap;
        flex-wrap: wrap;
        justify-content: center;
        margin: auto;
        -webkit-margin-before: 0;
                margin-block-start: 0;
        -webkit-margin-after: 0;
                margin-block-end: 0;
        width: calc(100vw - 32px);
        gap: 8px;
    }
    .profile_ul_menu ul li {
        display: block;
        padding: 12px;
        background: #999999;
        border-radius: 25px;
        color: #fff;
    }
    .profile_ul_menu ul li.current_purple {
        background: var(--color-purple);
        color: #fff;
    }
    .profile_container {
        padding: 16px;
    }
    .profile_form  {
        width: 100%;
    }
    .dws_profile_input {
        width: 100%;
    }
    .profile_labels_box label {
        padding: 12px 16x;
    }
    .search_block form {
        width: 100%;
    }
    .profile_container_text {
        width: 100%;
    }
    .complaint_form span {
        width: 100%;
        font-size: 15px;
    }
    .avatar_container .icon_polygon {
        display: none;
    }
    .avatar_container article {
        top: -166px;
        right: 21px;
    }
    .dws_profile_input select {
        background-position: 73vw 16px;
    }
    .select_block.test_select_block label {
        width: 58%;
    }


}
@media(max-width: 767px) {
    .sun_header{
        background-image: unset;
    }

    .sun_header .menu_fixed {
        background-image: unset;
    }

    .sun_header nav {
        width: 355px;
    }
    .sun_header .banners_main {
        width: 355px;
        min-width: 355px;
    }
    .sun_header h1 {
        font-size: 40px;
        line-height: 0.96;
        letter-spacing: -1px;
        margin-left: 6px;
        margin-top: 12px;
    }
    .sun_header .header_desc {
        margin-left: 6px;
    }
    .sun_header .header_desc .sun_button_comp_red {
        display: none;
    }
    .sun_header h3 {
        font-size: 22px;
        line-height: 1.1;
    }
    .banners_extra.banners_container_item:nth-of-type(1) {
        display: none;
    }
    .sun_header .banners_container_item {
        width: 355px;
    }
    .sun_main .slider_input .dws_input span {
        font-size: 14px;
    }
    .sun_main .slider_input .dws_input.days_180 {
        transform: translateX(77px);
    }
    .sun_main .slider_input .dws_input.days_360 {
        transform: translateX(168px);
    }
    .tarif_container_item.iptv_wrapper .tarif_container_table,
    .sun_main .tarif_container_item:first-child
     {
        width: 100%;
    }

    .sun_main .tarif_container_item.devices .iptv_img img {
        width: 128px;
    }
    .sun_main .iptv_img {
        width: 142px;
    }
    .iptv_extra_info_mob p {
        font-size: 12px;
    }
    .sun_main .sun_testing_free {
        width: 90%;
    }
    .sun_main .tarif_container_cart {
        position: fixed;
        top: auto;
        right: 0;
        bottom: 0;
        z-index: 12;
    }
    .sun_button_comp.wa.mob_wa {
        margin-right: 42px;
    }
    .bar {
        width: 22px;
        height: 3px;
        margin: 6px 0px;
    }
    #open_burger_menu:checked ~ label .bar.top {
        transform: translateY(6px) rotateZ(45deg);
    }
    .sun_header .header_sub {
        position: relative;
    }
    .sun_header h3 {
        position: absolute;
        width: 80%;
    }
    .sun_header .header_pic {
        width: 220px;
    }
    .sun_main h2 {
        font-size: 28px;
        width: 90%;
        line-height: 1.1;
        margin-bottom: 20px;
        margin-top: 0px;
        padding-top: 40px;
    }
    .sun_main p.tarif_p {
        display: none;
    }
    .tarif_container_main_box {
        background: #ffffff;
        width: 96%;
        max-width: 400px;
        margin: 10px auto;
        border-radius: 20px;
    }
    .sun_main .tarif_container {
        width: 100%;
        border-radius: 20px;
    }
    .sun_main {
        border-radius: 0px;
    }
    .iptv_input_group {
        flex: 1;
        margin-top: 36px;
    }
    .tarif_container_table {
        gap: 10px;
    }
    .tarif_container_item.iptv_wrapper .price_box {
        left: 150px;
    }
    .tarif_decription_absolute {
        width: calc(100% - 24px);
    }
    .sun_main .slider_input {
        width: 328px;
    }
    .sun_main .price_box span.line_through {
        font-size: 22px;
    }
    .sun_main .price_box span.bold {
        font-size: 36px;
    }
    .sun_main .price_box span {
        font-size: 16px;
    }
    .tarif_decription_absolute.tarif_visible {
        width: calc(100% - 24px);
    }
    .sun_main .tarif_container_item .tarif_container_line span {
        font-size: 18px;
    }
    .sun_header .menu_item {
        margin-bottom: 20px;
    }
    #open_burger_menu:checked ~ .menu_wrapper {
        height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
        height: calc(var(--vh, 1vh) * 100);
    }
    .sun_main .tarif_container_cart a.back_to_shopping {
        display: none;
    }
    .sun_main .tarif_container_item .tarif_container_line span img {
        width: 18px;
        height: 18px;
    }
    .sun_main .tarif_container_item:first-child {
        height: 290px;
    }
    .sun_main .price_box span.line_through,
    .sun_main .tarif_container_item:nth-child(3) .price_box span.bold  {
        font-size: 20px;
    }
    .base_cart_component {
        min-height: 0;
        height: auto;
    }
    .sun_main .dop_tarif_container_item {
        width: 338px;
        padding: 16px;
    }
    .sun_main .sun_testing_free {
        width: 96%;
        max-width: 400px;
        flex-direction: column;
    }
    .sun_testing_free_btn {
        width: 100%;
        margin-top: 20px;
    }
    .sun_button_comp.testing_btn {
        width: 100%;
    }
    .sun_beneficios_slider {
        width: 360PX;
    }
    .beneficios_slider_item_wrapper {
        flex-wrap: wrap;
        width: 360px;
        height: 340px;
        justify-content: space-between;
    }
    .sun_beneficios_slider_item {
        width: 165px;
        height: 140px;
    }
    .sun_beneficios_slider_img_abs {
        width: 80px;
        height: 80px;
    }
    .sun_beneficios_slider_card {
        height: 130px;
        padding: 16px;
    }
    .sun_beneficios_slider_card p {
        font-size: 12px;
    }
    .sun_text p {
        max-width: 400px;
        font-size: 14px;
        width: 96%;
    }
    .footer_info {
        gap: 20px;
    }
    .footer_info_item,
    .footer_info_item.card_flex_between {
        width: 40%;
    }
    .sun_main .sun_beneficios_wrapper {
        padding-top: 0px;
    }
    .base_modal_component {
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        flex: none;
    }
    #dialog.show.base_modal_wrapper {
        flex-direction: row;
    }
    .modal_dialog {
        width: 96%;
        padding: 12px;
    }
    .modal_dialog_btn_box {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .modal_dialog_btn_box .sun_button_comp {
        width: 100%;
        margin-bottom: 0px;
    }
    .modal_dialog_body h3 {
        font-size: 18px;
        width: 90%;
    }
    .cart_body.order_page .row_cart span.tarif_name {
        width: 80%;
    }
    .order_container {
        width: 96%;
    }
    .pay_cart_agree_body {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart_body.order_page .row_cart, 
    .cart_body.order_page .sub_check {
        gap: 12px;
    }
    .sun_main .tarif_container.checked_btn_plan1 .slider_line_purple.checked_btn_plan1 {
        width: 4.2%;
    }
    .sun_main .tarif_container.checked_btn_plan2 .slider_line_purple.checked_btn_plan2 {
        width: 28.2%;
    }
    .sun_main .tarif_container.checked_btn_plan3 .slider_line_purple.checked_btn_plan3 {
        width: 56.2%;
    }
    .sun_main .tarif_container.checked_btn_plan4 .slider_line_purple.checked_btn_plan4 {
        width: 87.2%;
    }
    input[name="slider"]:checked ~ label.btn_plan {
        filter: blur(7px);
    }
    .about_container .img_float_right {
        width: 100%;
    }
    .about_container p {
        font-size: 16px;
        margin: 20px 0px;
    }
    .about_container ul li {
        font-size: 16px;
    }

    /*** 06/12/24 ***/ 
    .label_column_item {
        width: 320px;
        height: 180px;
    }
    .flex_template_column_item_detales {
        width: 320px;
    }
    .label_column_item span {
        font-size: 16px;
    }
    .label_column_item .img_column_item {
        width: 150px;
        height: 50px;
    }
    .item_detales_number {
        width: 30px;
        height: 30px;
    }
    .flex_template_column_item_detales {
        padding-top: 16px;
    }
    .item_detales_plate {
        padding-top: 20px;
    }
    .player_img {
        width: 320px;
    }
    .p_atencion_negro p {
        font-size: 16px;
    }

    /*** 07/12/24 ***/
    .authentication_modals .modal_dialog {
        padding: 60px 0px;
    }
    .authentication_forms {
        width: 340px;
    }
    /*** 18/12/24 ***/
    .watch_flex_box  {
        margin: 40px auto;
    }
    .watch_flex_item  {
        width: 144px;
        height: 120px;
        border-radius: 15px;
        padding: 17px;

    }
    .watch_icon_box p {
        margin: 0px;
        font-size: 14px;
    }
    .watch_icon_box div {
        height: 55px;
    }
    /*** 23/12/24 ***/
    .solve_the_problem {
        width: 100%;
    }
    .contacts_phones_box {
        width: 90%;
    }
    .form_solve_the_problem {
        width: 100%;
    }
    .form_solve_the_problem .form_body {
        padding: 20px 0px;
    }
    .form_body_nav {
        flex-direction: column;
        width: 96%;
    }

    .form_body_fields {
        width: 90%;
    }
    .form_body_input select {
        background-position: 273px 18px;
    }
    .form_body_btn {
        text-decoration: none;
        -webkit-font-smoothing: antialiased;
        font-synthesis: none !important;
    }
}
@charset "UTF-8";
:root {
  --color-red: #FF4254;
}

.base_modal_component {
  width: 400px;
}
.base_modal_component .row_cart span.tarif_name {
  width: 210px;
}

.devices .iptv_device_add_button {
  min-height: 35px;
  font-size: 14px;
}

.order_cart_part .cart_body.order_page {
  width: 100%;
}
.order_cart_part .cart_body.order_page .row_cart span.tarif_name {
  width: 70%;
}

.order_body_cart .row_cart span.tarif_name {
  width: 320px;
}

.menu_fixed .username {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.hidden {
  display: none;
}

.text-danger {
  color: var(--color-red);
}

.hint {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
}

.text-success {
  color: var(--color-purple);
}

.aut_submit:disabled {
  opacity: 0.6;
}

.testing_btn.disabled {
  opacity: 0.6;
}

.modal {
  opacity: 0;
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

[data-toggle=modal], [data-action=close] {
  cursor: pointer;
}

.form_solve_the_problem {
  width: auto;
}

.solve_the_problem {
  width: 600px;
  margin: auto;
  height: auto;
}
.solve_the_problem .form_body {
  margin-top: 20px;
  width: 100%;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.1);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  box-sizing: border-box;
}
.solve_the_problem label#checked {
  background-color: var(--color-purple);
  color: #fff;
}
.solve_the_problem .form_body_btn.disabled {
  opacity: 0.6;
}

.current_purple {
  color: var(--color-purple);
}

.form_body_fields {
  display: block;
}
.form_body_fields .iti.iti--allow-dropdown {
  width: 100%;
}

.dws_profile_input input:-moz-read-only {
  background-color: rgba(153, 153, 153, 0.12);
}

.dws_profile_input input:read-only, .dws_profile_input select:disabled {
  background-color: rgba(153, 153, 153, 0.12);
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 700;
}

.text-danger {
  color: var(--color-red);
}

.delivery_address .bg_border_cart {
  width: 100%;
}
.delivery_address .flex_block {
  display: flex;
  gap: 20px;
}
.delivery_address .dws_inputs {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px auto;
}
.delivery_address .dws_inputs input, .delivery_address .dws_inputs select {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  border: 1px solid #CDCDCD;
  border-radius: 38px;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 0px 19px;
}
.delivery_address .dws_inputs input::-moz-placeholder {
  color: #CDCDCD;
  font-family: "Manrope";
  font-weight: 200;
}
.delivery_address .dws_inputs input:-ms-input-placeholder {
  color: #CDCDCD;
  font-family: "Manrope";
  font-weight: 200;
}
.delivery_address .dws_inputs input::placeholder {
  color: #CDCDCD;
  font-family: "Manrope";
  font-weight: 200;
}
.delivery_address .dws_inputs select {
  width: 100%;
  background-color: white;
  background-image: url(/images/select_flag.png?2f49bc8549849ef2fd06adbb73e6f492);
  background-size: 12px 7px;
  background-repeat: no-repeat;
  background-position: 505px 16px;
}
.delivery_address .dws_label {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.1;
  color: #2d2d2d;
  width: 100%;
  padding: 0px 10px;
}
.delivery_address .btn_purple {
  margin-left: auto;
}

.delivery_list .bg_border_cart {
  width: 100%;
}

.text-right {
  text-align: right;
}

.btn_purple {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 8px;
  min-width: 102px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-purple);
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  border: 0;
  font-size: 16px;
  font-weight: 400;
  height: 40px;
}
.btn_purple.disabled {
  opacity: 0.6;
}
.btn_purple .spinner {
  width: 19px;
  height: 19px;
  border-width: 2px;
  border-top-width: 2px;
}

.spinner {
  width: 50px; /* Ширина круга */
  height: 50px; /* Высота круга */
  border: 5px solid #f3f3f3; /* Цвет заднего фона */
  border-top: 5px solid #786CE2; /* Цвет активного сегмента */
  border-radius: 50%; /* Круглая форма */
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite; /* Анимация */
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg); /* Начальная позиция */
  }
  to {
    transform: rotate(360deg); /* Полный оборот */
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg); /* Начальная позиция */
  }
  to {
    transform: rotate(360deg); /* Полный оборот */
  }
}
.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.order_delivery_table {
  width: 100%;
  border-spacing: 0px 4px;
  border-collapse: separate;
}
.order_delivery_table thead tr th {
  font-family: "Manrope";
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  padding: 8px 16px;
}
.order_delivery_table tbody tr {
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.order_delivery_table tbody tr td {
  text-align: center;
  vertical-align: middle;
  padding: 8px 16px;
}
.order_delivery_table tbody tr td:first-child {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.clear_cart {
  height: 24px;
}
.clear_cart .spinner {
  width: 20px;
  height: 20px;
  border-width: 2px;
  border-top: 2px solid #989898;
}

.pay_cart_agree_body .sun_button_comp.testing_btn {
  height: 41px;
}
.pay_cart_agree_body .sun_button_comp.testing_btn .spinner {
  width: 20px;
  height: 20px;
  border-width: 2px;
  border-top: 2px solid #db0505;
}

form {
  margin: 16px auto;
}
form .search_block {
  width: 429px;
  height: 34px;
  display: flex;
  margin: 0 auto;
  border-radius: 7px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}

.modal .modal_dialog_header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D0D0D0;
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 20px 20px;
}
.modal .modal_dialog_header span {
  font-weight: 600;
  font-size: 24px;
}
.modal.comments_modal .modal_dialog_body {
  margin-top: 20px;
}
.modal.comments_modal .modal_dialog_body #comments-container {
  text-align: left;
}
.modal.comments_modal .modal_dialog_body input#comment {
  min-height: 40px;
  border-radius: 7px;
  border-color: rgba(0, 0, 0, 0.1);
  padding: 0px 16px;
  width: calc(100% - 40px);
  margin-bottom: 20px;
}
.modal.orders_modal {
  overflow-y: scroll;
}
.modal.orders_modal .modal_dialog {
  width: auto;
}
.modal.orders_modal .modal_dialog .client_details {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.modal.orders_modal .modal_dialog .client_details .table tr {
  background-color: unset;
  box-shadow: none;
}
.modal.orders_modal .modal_dialog .client_details .table tr td {
  font-weight: 400;
  text-align: left;
}
.modal.orders_modal .modal_dialog .client_details .table tr td:first-child {
  margin-bottom: 20px;
  font-weight: 600;
}
.modal.orders_modal .modal_dialog .orders_list .table {
  width: 50vw;
}
.modal.orders_modal .modal_dialog .orders_list .table thead tr th {
  font-weight: 600;
  padding: 12px 0;
  font-size: 13px;
}
.modal.orders_modal .modal_dialog .orders_list .table tbody tr td {
  padding: 12px 0;
  font-size: 13px;
}
.modal.orders_modal .new-order {
  margin-bottom: 20px;
}
.modal.orders_modal .new-order .btn_purple {
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  display: inline-block;
  margin-left: 10px;
}
.modal.create_client_modal .modal_dialog_body .dws_profile_input {
  width: auto;
  border: 1px solid #cdcdcd;
}
.modal#testFree .disabled {
  opacity: 0.6;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 10px;
}

.d-flex {
  display: flex;
}
.d-flex.justify-content-end {
  justify-content: end;
}
.d-flex.align-items-center {
  align-items: center;
}

#reseller_new_test .aut_input {
  padding-left: 19px !important;
}
#reseller_new_test select.aut_input {
  border: 1px solid #cdcdcd;
}

.modal_success .modal_dialog_body {
  margin-top: 10px;
}
.modal_success .modal_dialog_body .success_message_text {
  line-height: 1.8;
  text-align: left;
}
.modal_success .modal_dialog_body .success_message_text.three {
  text-align: center;
  font-size: 12px;
  color: var(--color-red);
}

.preloader {
  position: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}
button, a {
  cursor: pointer;
}

.order_cart_part {
  width: 100%;
}

span[data-value="*"] {
  display: unset;
  color: var(--color-red);
}

button.disabled {
  opacity: 0.6;
}

#content .slider_input_info {
  position: relative;
}
#content .slider_input_info .sale-block {
  text-align: right;
  position: absolute;
  left: 70%;
  bottom: -48px;
}
#content .slider_input_info .sale-block img {
  width: 150px;
}
#content .slider_input_info .sale-block .sale-percent {
  position: absolute;
  bottom: 26px;
  left: 63px;
  transform: rotate(7deg);
  color: #fff;
  font-size: 28px;
}
#content .slider_input_info .sale-block .sale-percent div {
  position: relative;
  right: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
}
#content .slider_input_info .sale-block .sale-percent div.percent {
  font-size: 25px;
  position: relative;
  left: -10px;
}

#content .full_vod_only .sale-block {
  position: absolute;
  left: 63%;
  bottom: -92px;
}

.sun_header .banners_extra div:first-child {
  position: relative;
  width: clamp(3ch, 65%, 21ch);
  margin-left: 20px;
  margin-top: 20px;
  z-index: 2;
}
.sun_header .banners_extra div:first-child h2 {
  width: auto;
  margin: 0;
}
.sun_header .banners_extra.banners_container_item .bg-image {
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 767px) {
  .solve_the_problem {
    width: 100%;
  }
  .form_body_input select {
    background-position: 94% 18px;
  }
  .profile_container form {
    width: 100%;
  }
}
@media (max-width: 1151px) {
  .sun_main .full_vod_only .slider_input_info_relative .sun_button_comp {
    bottom: -350px;
  }
  .sun_main .full_tariffs .slider_input_info_relative .sun_button_comp {
    bottom: -520px;
  }
  #content .full_vod_only .slider_input_info .sale-block,
#content .full_tariffs .slider_input_info .sale-block {
    bottom: -577px;
    left: 72%;
  }
  #content .full_vod_only .slider_input_info .sale-block img,
#content .full_tariffs .slider_input_info .sale-block img {
    width: 100px;
  }
  #content .full_vod_only .slider_input_info .sale-block .sale-percent,
#content .full_tariffs .slider_input_info .sale-block .sale-percent {
    bottom: 16px;
    left: 43px;
  }
  #content .full_vod_only .slider_input_info .sale-block .sale-percent div,
#content .full_tariffs .slider_input_info .sale-block .sale-percent div {
    font-size: 8px;
  }
  #content .full_vod_only .slider_input_info .sale-block .sale-percent div.percent,
#content .full_tariffs .slider_input_info .sale-block .sale-percent div.percent {
    font-size: 19px;
  }
  #content .full_vod_only .slider_input_info .sale-block {
    bottom: -406px;
  }
}
@media (min-width: 360px) and (max-width: 768px) {
  #content .full_vod_only .slider_input_info .sale-block {
    bottom: -414px;
  }
  #content .full_tariffs .slider_input_info .sale-block {
    bottom: -584px;
    left: 75%;
  }
}
.sun_main p:not(:last-child) {
  margin-bottom: 20px;
}

.promo_renew {
  text-align: center;
  padding-top: 20px;
}
.promo_renew .container {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.promo_renew .container h3 {
  margin-top: 10px;
}
.promo_renew .container strong {
  font-size: 20px;
}
.promo_renew .container .renew {
  margin: 16px auto;
}
.promo_renew .container .renew .spinner {
  width: 15px;
  height: 15px;
  margin: 0 auto;
}

@media (min-width: 1151px) {
  .order_cart_part {
    width: calc(60% - 10px);
  }
  .pay_cart_part {
    width: calc(40% - 10px);
  }
  .delivery_address .dws_inputs select {
    background-position: 94% 16px;
  }
  .sun_header h1 {
    font-size: 48px;
  }
  .sun_header .banners_extra {
    min-height: 45%;
  }
}
@media (max-width: 920px) {
  .flex_block {
    flex-direction: column;
  }
  .delivery_address .dws_inputs select {
    background-position: 97% 16px;
  }
  .promo_renew .container h1 {
    font-size: 32px;
  }
  .promo_renew .container h3 {
    font-size: 20px;
  }
  .promo_renew .container h4 {
    font-size: 16px;
  }
  .promo_renew .container .dws_profile_input select {
    background-image: unset;
  }
}
.vod-tariff-block {
  display: flex;
  align-items: center;
  margin-top: 40px;
  background-color: #2a3a54;
  border-radius: 12px;
  padding: 15px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}
.vod-tariff-block .img {
  flex: 0 0 80px;
  margin-right: 15px;
}
.vod-tariff-block .img img {
  width: 100%;
  height: auto;
}
.vod-tariff-block .title {
  flex: 1;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.vod-tariff-block .title .buy {
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  padding: 10px 35px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  font-weight: 500;
}
.vod-tariff-block .title .buy:hover {
  background-color: #e63b3b;
}
.vod-tariff-block .col {
  flex: 0 0 200px;
  text-align: right;
  margin-left: auto;
}
.vod-tariff-block .col .discount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.vod-tariff-block .col .discount .price-old {
  color: #9ca3af;
  font-size: 16px;
  margin-right: 10px;
}
.vod-tariff-block .col .discount .price-old del {
  text-decoration: line-through;
}
.vod-tariff-block .col .discount .percent {
  background-color: #ff4d4d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: bold;
}
.vod-tariff-block .col .bold {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2px;
}
.vod-tariff-block .col .duration {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 5px;
}
.vod-tariff-block .col .additional_text {
  font-size: 11px;
  color: #9ca3af;
  display: block;
  text-align: right;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .vod-tariff-block {
    padding: 12px 15px;
  }
  .vod-tariff-block .img {
    flex: 0 0 60px;
    margin-right: 10px;
  }
  .vod-tariff-block .title {
    font-size: 20px;
  }
  .vod-tariff-block .title .buy {
    padding: 8px 16px;
    font-size: 14px;
    margin-top: 6px;
  }
  .vod-tariff-block .col {
    flex: 0 0 140px;
  }
  .vod-tariff-block .col .discount .price-old {
    font-size: 13px;
    margin-right: 6px;
  }
  .vod-tariff-block .col .discount .percent {
    font-size: 11px;
    padding: 3px 6px;
  }
  .vod-tariff-block .col .bold {
    font-size: 24px;
  }
  .vod-tariff-block .col .duration {
    font-size: 11px;
  }
  .vod-tariff-block .col .additional_text {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .vod-tariff-block {
    padding: 10px 12px;
  }
  .vod-tariff-block .img {
    flex: 0 0 50px;
    margin-right: 8px;
  }
  .vod-tariff-block .title {
    font-size: 16px;
  }
  .vod-tariff-block .title .buy {
    padding: 6px 12px;
    font-size: 12px;
    margin-top: 4px;
  }
  .vod-tariff-block .col {
    flex: 0 0 110px;
  }
  .vod-tariff-block .col .discount .price-old {
    font-size: 11px;
    margin-right: 4px;
  }
  .vod-tariff-block .col .discount .percent {
    font-size: 10px;
    padding: 2px 5px;
  }
  .vod-tariff-block .col .bold {
    font-size: 20px;
  }
  .vod-tariff-block .col .duration {
    font-size: 10px;
  }
  .vod-tariff-block .col .additional_text {
    font-size: 8px;
  }
}
