.kg_container{
    max-width: 1210px;
    margin: auto;
}
div#map-wrapper {
   position: relative;
   padding: 80px 0;
     width: 100%;
}

div#map-wrapper .main-containt {
       max-width: 100%;
    margin: auto;
    position: relative;
}

div#map-wrapper .row-content {
   display: flex;
   position: relative;
   justify-content: space-between;
}

div#map-wrapper .row-content .content-col-8 {
   width: 60%;
   max-width: 60%;
   flex: 0 0 60%;
  position: relative;
}

div#map-wrapper .row-content .content-col-4 {
   width: 33%;
   max-width: 33%;
   flex: 0 0 33%;
}

.map-code-section {
   padding: 30px;
   border: 1px solid #b7b5b5;
   border-radius: 10px;
}

.map-code-section svg {
   width: 100%;
   height: auto;
}

ul {
   padding-left: 0;
}

path.location-pin {
   cursor: pointer;
}

.profile-tooltip {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    min-width: 275px;
    opacity: 0; 
    visibility: hidden;
    overflow: hidden;
    transform: translateY(10px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Animation for show/hide */
}

.profile-tooltip.active {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide to position */
    visibility: visible;
}

.profile-tooltip::before {
   content: "";
   background: #e6e6e6;
   position: absolute;
   top: 0;
   width: 100%;
   height: 70px;
   left: 0;
}
.profile-tooltip.no-image .profile-img-wrap,
.profile-tooltip.no-image::before{
    display: none;
}
.profile-tooltip .profile-img-wrap {
   display: block;
   position: relative;
   max-width: 100%;
   width: 100px;
   height: auto;
   margin: auto;
   object-fit: cover;
   border-radius: 50px;
   overflow: hidden;
}
.kg-section-wrap{
    padding: 40px 0;
}
.kg-section-wrap .kg-text-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.kg-section-wrap .kg-text-left .kg-text h1 {
    font-size: 32px;
    color: #414042;
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding-bottom: 10px;
}
.kg-section-wrap .kg-text-left select {
    border: 1px solid #ddd !important;
    width: 100% !important;
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0px -1px 0 0px #dddddd7a !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background-color: #f1f1f1 !important;
    color: #a2a29e !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url(https://i.ibb.co/pQhYVSW/Group-7.png) !important;
    background-size: 1.3em !important;
    background-position: calc(100% - 1.3em) center !important;
    background-repeat: no-repeat!important;
}
.kg-section-wrap .kg-text-left form.kg-custom-select__btn.input input{
    border:none;
    background: none;
    font-size: 14px;
    letter-spacing: 1px;
    color: #a2a29e;
    width: 100%;
}
.kg-section-wrap .kg-text-left select:focus-visible{
    outline: 0px;
}
.kg-section-wrap .kg-text-left form.kg-custom-select__btn.input span.kg-text-start {
    font-size: 15px;
    letter-spacing: 1px;
} 

.profile-tooltip .profile-img-wrap img {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   object-fit: cover;
   object-position: center;
   display: inline-block;
   width: 100%;
   height: 100%;
   max-width: 100%;
   max-height: 100%;
   margin: auto 0;
   transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}

.profile-tooltip .profile-img-wrap::after {
   content: '';
   position: relative;
   display: block;
   width: 100%;
   padding-bottom: 100%;
}

.profile-tooltip h2#tooltip-name {
   font-size: 18px;
   text-align: center;
   margin: 0;
   margin-top: 6px;
}

.profile-tooltip p#tooltip-location {
   font-size: 12px;
   text-transform: uppercase;
   margin: 0;
   color: #7e7878;
   text-align: center;
   font-weight: 700;
}
.profile-tooltip .profile-contact li span.contact-icon em.fa-solid {
    font-size: 15px;
    vertical-align: middle;
    color: #00abe7;
}
.profile-tooltip .profile-contact {
   margin-top: 8px;
}

.profile-tooltip .profile-contact li {
   font-size: 11px;
   list-style: none;
   padding: 3px 0px;
   color: #8d8787;
}
.profile-tooltip .profile-contact ul.contact-list {
    margin-bottom: 0;
}

.profile-tooltip .profile-contact li a{
    font-size: 14px;
}
button#close-btn {
    background: #bfbfbf;
    width: 22px;
    height: 22px;
    border-radius: 50px;
    border: 0;
    position: absolute;
    top: 6px;
    right: 5px;
    z-index: 5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
button#close-btn:hover{
    background: #a39c9c;
}
button#close-btn svg {
    width: 10px;
    height: 10px;
}
.profile-tooltip .profile-contact li span.contact-icon {
    margin-right: 5px;
}
.profile-tooltip .profile-contact li a {
    color: #8d8787;
    text-decoration: none;
}
.profile-tooltip .profile-contact li a:hover {
    color: #0076c2;
}
@media only screen and (max-width:1250px){
    .kg_container{
        margin: auto;
        padding: 0 30px;
        width: 100%;
    }
}
@media only screen and (max-width:991px){
    div#map-wrapper .row-content .content-col-4 {
        width: 35%;
        max-width: 35%;
        flex: 0 0 35%;
    }
}
@media only screen and (max-width:767px){
    div#map-wrapper  .row-content{
        flex-direction: column;
        width: 100%;
    }
    div#map-wrapper .row-content .content-col-4,
    div#map-wrapper .row-content .content-col-8{
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .kg-section-wrap .kg-text-left{
        gap: 20px;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }
    .kg-section-wrap .kg-text-left .kg-text{
        flex: 1;
    }
    .kg-section-wrap .kg-text-left .kg-text h1 {
        font-size: 20px;
    }
}
@media only screen and (max-width:580px) {
    .kg-section-wrap .kg-text-left .kg-text {
        flex: 0 0 100%;
    }
}
.kg_main_menu .av-main-nav-wrap{
    margin-right: 20px;
}
.kg_main_menu{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.kg_main_menu img{
    height: auto;
    max-width: 70px;
    width: 100%;
}
@media (max-width: 1024px) { 
	.kg_main_menu img{
        max-width: 60px;
    }
}
@media (max-width: 767px) { 
	.kg_main_menu{
        display: flex !important;
    }
    .kg_main_menu img{
        max-width: 40px;
    }
    .kg_main_menu .kg_mobile_hide{
        display: none ;
    }
   
        .av-burger-overlay-active-delayed .av_main_nav_header .kg_main_menu li.av-burger-menu-main {
        display: flex !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
    .av-burger-overlay-active-delayed .av_main_nav_header .kg_main_menu li.av-burger-menu-main .kg_image_logo {
        padding-right: 105px;
        display: block !important;
        opacity: 1 !important;
    }
    .kg_main_menu li.av-burger-menu-main .kg_image_logo {
        display: none !important;
        opacity: 0 !important;
    }
     .av-burger-overlay-active-delayed .kg_main_menu .kg_image_logo{
        display: block !important;
    }
    .av-burger-overlay-active-delayed .av_main_nav_header .kg_main_menu li.av-burger-menu-main .kg_image_logo img {
        display: block;
        height: auto;
        max-width: 50px;
    }
    .av-burger-overlay-active-delayed ul#av-burger-menu-ul:after {
        content: '';
        background-image: url(https://fortehealthcare.com/wp-content/uploads/2025/07/gptw-Certified-April-2025-plain-copy.webp);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        right: 210px;
        top: 60px;
        bottom: 0;
        height: 100px;
        z-index: 1111;
    }
    .html_av_admin_bar_active.av-burger-overlay-active-delayed ul#av-burger-menu-ul:after {
        top: 87px !important;
    }
}
@media screen and (max-width: 575px) {
    .kg-dogs-cat-section {
        min-height: 255px;
    }
}

/*08-12-2025*/
.kg-main-heading {
	display: flex;
    align-items: center;
}
.kg-dogs-cat-section{
	 background: #e7f2fb;
    float: unset;
    min-height: 230px;
    position: relative !important;
    box-shadow: rgb(0 0 0 / 10%) 0px 4px 15px;
    height: 100%;
    clear: unset;
}
.kg-dentihex-section .container {
    max-width: 1480px !important;
}
.kg-dentihex-section .av_one_fifth{
	  margin-left: 20px;
		width: 18%;
}
.kg-dentihex-div-wrapper.flex_cell.av-gridrow-cell.av_one_full {
	background: url('/wp-content/uploads/2025/12/xAirbrush-image-extender-35-1-Picsart-AiImageEnhancer-1.png.pagespeed.ic.eXM1sIzdP1.webp') 50% 50% no-repeat scroll;
    background-size: cover !important;
}
.why_choose_col .av-special-heading-h3 .av-special-heading-tag {
	font-weight: 700;
}
.why_choose_col .av_textblock_section .avia_textblock p{
	    font-weight: 600;
    letter-spacing: -0.5px;
}
.kg-landing-heading.modern-quote .av-special-heading-tag {
    font-weight: 900;
}
.kg-landing-heading.modern-quote .av-special-heading-tag span{
	color: #4ba4de;
}
/* .kg-support-section .resources_materials .av-special-heading h3{
	font-weight: 600;
}
.kg-support-section .resources_materials.first {
    margin-left: 0px;
}
.kg-support-section .resources_materials {
    width: 22%;
    margin-left: 40px;
}
.kg-support-section .resources_materials .avia-image-container img{
	width: 50px;
} */
.border-top-heading h3{
	width: fit-content;
}
.border-top-heading h3:before {
    content: '';
    width: 100%;
    height: 5px;
    display: block;
    background: #c40147;
    border-radius: 14px;
	  margin-bottom: 10px;
}
.tv-animation-video .mejs-overlay-button {
    background: url(https://fortehealthcare.com/wp-content/uploads/2025/12/play-fill.svg);
    background-position: 0 0px;
    background-size: contain;
}

.tv-animation-video .mejs-overlay:hover>.mejs-overlay-button {
    background-position: 0px;
}
.border-top-heading{
	font-weight: 700;
}
.kg-about-science-section {
    color: #fff;
}
.kg-about-science-section .kg-about-science-wrapper {
    padding: 70px 0 100px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-btn a {
    display: block;
    width: fit-content;
    margin: auto;
    font-size: 15px;
    background-color: #45b7f6;
    border-color: #45b7f6;
    color: #fff;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
    padding: 11px 22px;
    line-height: 1.3;
    font-weight: 400;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-btn {
    margin: 0 0 30px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-title {
    white-space: normal;
    font-weight: 900;
    font-size: 60px;
    padding: 0 0 5px;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0;
}
.kg-about-science-section .kg-about-science-wrapper .kg-science-text {
    margin: 0 0 20px;
    text-align: center;
    line-height: 1.4;
    font-size: 20px;
    font-family: 'dax', Helvetica, Arial, sans-serif;
    letter-spacing: 0.8px;
    font-weight: 400;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col {
    max-width: 28%;
    width: 100%;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col.kg-about-grid-image-col {
    max-width: 36%;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-about-box-inner {
    display: flex;
    flex-direction: column;
    gap: 140px;
    height: 100%;
    justify-content: space-between;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-box {
    border: 1px solid #28aceb;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-box .kg-about-box-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-box .kg-about-box-wrap p {
    margin: 0;
    font-family: 'dax', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.1px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap {
    height: 100%;
    position: relative;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    align-items: center;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image figure {
    max-width: 250px;
    width: 100%;
    object-fit: contain;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::before {
    content: "";
    background: url('https://fortehealthcare.com/wp-content/uploads/2025/12/Vector-109.svg') no-repeat center;
    width: 110px;
    height: 75px;
    position: absolute;
    background-size: contain;
    transform: rotateY(180deg);
    top: 30px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::after {
    content: "";
    background: url('https://fortehealthcare.com/wp-content/uploads/2025/12/Vector-109.svg') no-repeat center;
    width: 110px;
    height: 75px;
    position: absolute;
    background-size: contain;
    transform: rotateY(180deg) rotateX(180deg);
    bottom: 30px;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::after {
    content: "";
    background: url('https://fortehealthcare.com/wp-content/uploads/2025/12/Vector-109.svg') no-repeat center;
    width: 110px;
    height: 75px;
    position: absolute;
    background-size: contain;
    transform: rotateY(180deg) rotate(180deg);
    bottom: 30px;
    right: 0;
}
.kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::before {
    content: "";
    background: url('https://fortehealthcare.com/wp-content/uploads/2025/12/Vector-109.svg') no-repeat center;
    width: 110px;
    height: 75px;
    position: absolute;
    background-size: contain;
    top: 30px;
    right: 0;
}
@media screen and (max-width: 1199px) {
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-about-box-inner {   
        gap: 60px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid {
        gap: 30px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image figure {
        max-width: 170px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::before , 
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::after ,
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::before ,
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::after {
        width: 85px;
        height: 60px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-box {
        padding: 20px;
    }
    .kg-dentihex-section .av_one_fifth{
        width: 30%;
        margin-bottom: 20px;
    }
    .kg-support-section .resources_materials{
        width: 22.5;
        margin-bottom: 20px;
        margin-left: 20px;
    }
}
@media screen and (max-width: 767px) {
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-title {
        font-size: 48px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-btn {
        margin: 0 0 15px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid {
        flex-direction: column;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col.kg-about-grid-image-col ,
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col {
        max-width: 100%;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-about-box-inner {
        gap: 20px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-box {
        max-width: 400px;
        width: 100%;
        margin: auto;
        padding: 25px;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::before , 
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap::after ,
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::before ,
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-content .kg-about-science-grid .kg-about-grid-col .kg-science-imgae-wrap .kg-science-image::after {
        display: none;
    }
    .kg-about-science-section .kg-about-science-wrapper .kg-science-text {
        margin: 0 0 40px;
    }
}
@media screen and (max-width: 575px) {
    .kg-about-science-section .kg-about-science-wrapper .kg-about-science-title {
        font-size: 40px;
    }
}
.kg-about-chlorhexidin .flex_column_div{
	background: transparent !important;
}
.kg-secound-section .kg-secound-section-wrapper {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.kg-secound-section .kg-secound-section-wrapper .kg-secound-section-wrapper-text{
    font-size: 90px;
    color: #3a4d5c;
    font-weight: 700;
}


.kg-secound-section .kg-secound-section-text{
    text-align: center;
    color: #222;
    font-size: 20px;
    font-weight: 700;
}
.kg-contact-section .av_one_full.no_margin{
	padding: 0px;
}
@media screen and (max-width: 460px) {
.kg-secound-section .kg-secound-section-wrapper .kg-secound-section-wrapper-text{
    font-size: 50px;
}
	.kg-landing-heading h3{
		font-size:40px;
	}
	.flex_column.avia-builder-el-62.el_after_av_one_half.el_before_av_video.kg-tv-video-download-btn.flex_column_div {
    float: left;
    display: flex;
}
}
.kg-contact-section {
background: #c40147;
min-height: 400px;
padding: 99px 0;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}


.kg-contact-section .kg-decorative-circle {
position: absolute;
right: -225px;
top: 58px;
transform: translateY(-50%);
width: 485px;
height: 485px;
background: rgb(237 2 60);
border-radius: 50%;
pointer-events: none;
}


.kg-contact-section .kg-content-wrapper {
width: 100%;
text-align: center;
position: relative;
z-index: 1;
}


.kg-content-wrapper .kg-heading {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
color: #ffffff;
margin-bottom: 15px;
line-height: 1.2;
}


.kg-content-wrapper .kg-subheading {
font-size: 16px;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 35px;
font-weight: 400;
}


.kg-content-wrapper .kg-search-container {
display: flex;
justify-content: center;
margin-bottom: 40px;
}


.kg-search-container .kg-search-box {
display: flex;
align-items: center;
background: #ffffff;
border-radius: 50px;
padding: 8px 8px 8px 30px;
width: 100%;
max-width: 520px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.kg-search-box .kg-input-field {
flex: 1;
border: none !important;
outline: none !important;
font-size: 16px !important;
color: #999 !important;
font-family: 'Open Sans', sans-serif !important;
background: transparent !important;
margin: 0 !important;
}


.kg-search-box .kg-input-field::placeholder {
color: #868686 !important;
}


.kg-search-box .kg-submit-btn {
background: #4ba4de;
color: #ffffff;
border: none;
padding: 14px 30px;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
font-family: 'Open Sans', sans-serif;
transition: all 0.3s ease;
white-space: nowrap;
}


.kg-search-box .kg-submit-btn:hover {
background: linear-gradient(135deg, #29b6f6 0%, #03a9f4 100%);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(41, 182, 246, 0.4);
}


.kg-content-wrapper .kg-contact-info {
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
flex-wrap: wrap;
}



.kg-contact-info .kg-contact-item {
display: flex;
align-items: center;
gap: 10px;
color: #ffffff;
font-size: 15px;
}



.kg-contact-item .kg-icon {
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
}



.kg-contact-item .kg-icon svg {
width: 18px;
height: 18px;
fill: #ffffff;
}



.kg-contact-item .kg-link {
color: #ffffff;
text-decoration: none;
transition: opacity 0.3s ease;
}



.kg-contact-item .kg-link:hover {
opacity: 0.8;
color: #c2d6e3;
}



.kg-contact-item .kg-text {
color: #ffffff;
}


@media (max-width: 768px) {
.kg-contact-section {
    padding: 40px 20px;
}


.kg-search-container .kg-search-box {
    box-shadow: unset;
    background: unset;
}
.kg-contact-section .container {
    width: 100% !important;
    max-width: 100% !important;
}
.kg-search-container .kg-search-box input {
    display: flex !important;
    align-items: center;
    background: #ffffff !important;
    border-radius: 50px !important;
    padding: 14px 24px 14px 30px !important;
    width: 100% !important;
    max-width: 520px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.kg-contact-section .kg-decorative-circle {
    width: 200px;
    height: 200px;
    right: -80px;
}
.kg-content-wrapper .kg-search-container{
    margin-bottom: 0;
}


.kg-content-wrapper .kg-heading {
    font-size: 28px;
}


.kg-content-wrapper .kg-subheading {
    font-size: 14px;
    padding: 0 10px;
}


.kg-search-container .kg-search-box {
    flex-direction: column;
    padding: 15px;
    border-radius: 20px;
    gap: 15px;
}


.kg-search-box .kg-input-field {
    width: 100%;
    text-align: center;
    padding: 10px;
	    color: #c40147 !important;
}


.kg-search-box .kg-submit-btn {
    width: max-content;
}


.kg-content-wrapper .kg-contact-info {
    flex-direction: column;
    gap: 15px;
}
}
.kg-dentihex-div .kg-dentihex-div-wrapper {
    padding: 90px 0 50px !important;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .flex_cell_inner {
    display: flex;
    flex-direction: column;
    align-items: end;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block {
    clear: unset;
    max-width: 590px;
    width: 100%;
    padding: 43px 20px 44px 90px;
    background: #c40147;
    color: #fff;
    border-radius: 90px 0 0 90px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-heading h3 {
    font-size: 90px !important;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
    line-height: 1.1;
    margin: 0 0 5px;
    font-family: 'dax', Helvetica, Arial, sans-serif;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-1 p {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0 0 16px;
    font-family: 'dax', Helvetica, Arial, sans-serif;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-2 p {
    font-size: 20px;
    font-weight: 200;
    font-family: 'dax', Helvetica, Arial, sans-serif;
    margin: 0 0 15px;
    line-height: 1.2;
}
.kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-3 p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'dax', Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
}


@media screen and (max-width: 767px) {
    .responsive #top #wrap_all  .kg-dentihex-div .kg-dentihex-div-wrapper {
        padding: 70px 0 50px !important;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block {
        max-width: 430px;
        padding: 33px 20px 40px 58px;
        border-radius: 70px 0 0 70px;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-heading h3 {
        font-size: 63px !important;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-1 p {
        font-size: 40px;
    }
	.kg-about-science-section .kg-about-science-wrapper{
		padding: 00px 0 0px;
	}
}
@media screen and (max-width: 500px) {
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-heading h3 {
        font-size: 50px !important;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-1 p {
        font-size: 34px;
        margin: 0 0 10px;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-2 p {
        font-size: 17px;
        margin: 0 0 8px;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block .kg-dentix-text-3 p {
        font-size: 18px;
    }
    .kg-dentihex-div .kg-dentihex-div-wrapper .kg-dentix-block {
        max-width: 341px;
        width: 95% !important;
        padding: 25px 19px 25px 27px;
        border-radius: 37px 0 0 37px;
    }
	.kg-main-heading .flex_column_div {
        padding: 0px;
        margin: 0px !important;
    }
	.kg-landing-heading h3  , .kg-main-heading h2{
        font-size: 26px !important;
    }
}
.kg-contact-section-div .av-gridrow-cell.av_one_full.no_margin{
	padding: 0px !important;
}
.avia-section.kg-section-height {
    min-height: auto;
    padding: 11px 0; 
} 
.avia-section.kg-section-height p {
    font-size: 10px;
    line-height: normal;
    color: #000;
}
.tv-animation-video.avia-video {
    overflow: hidden;
    border-radius: 20px !important;
    background: transparent !important;
}
.tv-animation-video.avia-video  video {
    background: transparent;
}

.avia-video.tv-animation-video .avia_video.mejs-video {
    border-radius: 20px;
}
.kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper .kg-cpd-video-anna-div-img {
    height: 58px;
    width: 100%;
    max-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00a0e2;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    font-family: 'dax', Helvetica, Arial, sans-serif;
}
.kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper .kg-cpd-video-anna-div-text h3 {
    color: #00a0e2;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: 'dax', Helvetica, Arial, sans-serif;
}
.kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper .kg-cpd-video-anna-div-text p {
    margin: 0;
    font-family: 'dax', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}


@media screen and (max-width: 1024px) {
    .kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper {
        gap: 18px;
        padding: 12px 16px;
    }
}
@media screen and (max-width: 500px) {
    .kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper .kg-cpd-video-anna-div-text h3 {
        font-size: 20px;
    }
    .kg-cpd-video-anna-div .kg-cpd-video-anna-div-wrapper .kg-cpd-video-anna-div-img {
        height: 52px;
        max-width: 52px;
        font-size: 18px; 
    }
    .kg-landing-heading h3 {
        padding: 20px 0px !important;
    }
}
.kg-about-chlorhexidin.avia-section {
    box-shadow: rgb(0 0 0 / 16%) 0px 8px 13px;
    position: relative !important;
    background-image: url('/wp-content/uploads/2025/12/Vector-1.png');
    background-size: cover;
}
.kg-contact-section-div {
    position: relative !important;
    box-shadow: rgb(0 0 0 / 11%) 0px -11px 17px;
}
.kg-cpd-video {
    box-shadow: rgb(0 0 0 / 14%) 0px 1px 10px;
    position: relative !important;
}
.kg-social-media-assets {
    box-shadow: rgb(0 0 0 / 14%) 0px 1px 10px;
    position: relative !important;
}
.kg-tv-video-animation .content .avia-video {
    overflow: hidden;
    border-radius: 20px !important;
    background: transparent !important;
}
.kg-tv-video-animation .content .avia-video .mejs-inner .mejs-poster.mejs-layer{
    background-image: url(https://fortehealthcare.com/wp-content/uploads/2025/12/Asset-2-14-1.png) !important;
}
.kg-tv-video-animation .content .avia-video video {
    background: transparent;
}
@media screen and (max-width: 500px) {
    .kg-dentihex-section .template-page.content.av-content-full , .kg-about-chlorhexidin .template-page.content.av-content-full , .kg-support-section .template-page.content.av-content-full{
    padding: 30px 0 !important;
    }
}
.kg-dentihex-section .avia-button-wrap .avia-button  .avia_iconbox_title,
.kg-about-chlorhexidin .avia-button-wrap .avia-button  .avia_iconbox_title,
.kg-support-section .avia-button-wrap .avia-button  .avia_iconbox_title{
        font-weight: 600 !important;
}
.kg-social-media-assets .dlp-grid-documents .owl-nav{
    display: block !important;
}
.kg-social-media-assets .dlp-grid-documents .owl-nav button{
    position: absolute;
    top: 45%;
}
.kg-social-media-assets .dlp-grid-documents .owl-nav span{
    font-size: 70px;
}
.kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-prev{
    left: -150px;
}
.kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-next{
    right: -150px;
}
@media screen and (max-width: 1366px) {
    .kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-prev{
        left: -50px;
    }
    .kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-next{
        right: -50px;
    }
}
@media screen and (max-width: 1024px) {
    .kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-prev{
        left: -20px;
    }
    .kg-social-media-assets .dlp-grid-documents .owl-nav button.owl-next{
        right: -20px;
    }
}
/* .kg-login-page .woocommerce-form-login {
    max-width: 450px;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 10px;
} */
.kg-login-page .woocommerce-form-login .woocommerce-form-row label{
    font-size: 16px !important;
}
.kg-login-page .woocommerce-form-login .woocommerce-form-row  input{
    border-radius: 10px !important;
}
.kg-login-page .woocommerce-form-login .form-row .woocommerce-button {
    font-size: 14px;
}
.kg-login-page .woocommerce-form-login .lost_password{
    left: 0;
}
.kg-login-page .woocommerce-form .show-password-input{
    border: 0px;
    background: transparent;
}
.kg-login-page .woocommerce-form .show-password-input::before{
    content: '';
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 22px;
    width: 22px;
}
.kg-login-page .woocommerce-form .show-password-input.display-password::before{
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>');
}
.kg-login-page .woocommerce>h2{
    text-align: center;
}



.kg-landing-faqs section.av_toggle_section {
    margin-bottom: 12px;
}
.kg-landing-faqs section.av_toggle_section .single_toggle {
    border-radius: 16px;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler {
    padding: 18px 55px 18px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px 16px 0 0!important;
    font-weight: 600;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler > span {
    width: 30px;
    display: inline-flex;
    height: 30px;
    background: #0098db;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    flex: 0 0 30px;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler span.toggle_icon {
    background-color: #e8f7fc;
    border: 0;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 1;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler span.toggle_icon span.vert_icon {
    border: 0;
    background-image: url(https://fortehealthcare.com/wp-content/uploads/2025/12/Frame-2.png);
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    background-position: center;
    transform: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler span.toggle_icon span.hor_icon {
    display: none;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler[aria-expanded="true"] span.toggle_icon span.vert_icon {
    background-image: url(https://fortehealthcare.com/wp-content/uploads/2025/12/Frame-1.png);
} 
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler[aria-expanded="true"]  > span {
    background: #c40147;
}
@media screen and (max-width: 600px){
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler {
    padding: 18px 40px 18px 21px;
}
.kg-landing-faqs section.av_toggle_section .single_toggle .toggler span.toggle_icon {
    right: 12px;
}  
	.el_after_av_heading.avia-builder-el-last {
    padding: 20px 0;
}
}

  .kg-support-section-box .container.av-section-cont-open{
        padding: 0px 50px !important;
        padding-bottom: 50px !important;
    }
/* .kg-support-section-box .template-page .post-entry .entry-content-wrapper{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
   
}
.kg-support-section-box .template-page .post-entry .entry-content-wrapper .flex_column.av_one_fifth  {
    margin-left: 0;
    width: 25%;
}*/
.kg-support-section-box .template-page .post-entry .entry-content-wrapper .flex_column.av_one_fifth .avia-image-container-inner img{
    width: auto;
} 
.kg-support-section-box .template-page .post-entry .entry-content-wrapper{
    display: grid;
    grid-template-columns: repeat(5,1fr);
     gap: 20px;
}
.kg-support-section-box .template-page .post-entry .entry-content-wrapper .flex_column.av_one_fifth{
    width: 100%;
    margin: 0px;
}
.kg-support-section-box .template-page .post-entry .entry-content-wrapper::before{
    display: none;
}
@media screen and (max-width: 1024px){
    .kg-support-section-box .template-page .post-entry .entry-content-wrapper{
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .kg-support-section-box .template-page .post-entry .entry-content-wrapper .flex_column.av_one_fifth{
        width: 100%;
    }
    .kg-support-section-box .template-page .post-entry .entry-content-wrapper::before{
        display: none;
    }
  
}
@media screen and (max-width: 767px){
    .kg-support-section-box .container.av-section-cont-open{
        padding: 0px !important;
    }
}
@media screen and (max-width: 600px){
    .kg-support-section-box .template-page .post-entry .entry-content-wrapper{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}

#sgpb-popup-dialog-main-div.kg-register-webinar-popup-content {
    box-shadow: none!important;
    border-bottom-width: 0 !important;
    border-radius: 14px !important;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .wpforms-form img.wpforms-submit-spinner {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px !important;
    height: 26px !important;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup {
    max-width: 615px;
    margin: auto;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .kg-popup-content .wpforms-field {
    padding: 0;
    width: 100%;
    margin: 0;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .wpforms-container,
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .wpforms-form{
    margin: 0 !important;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .kg-popup-content .wpforms-field input {
    width: 100%;
    max-width: 100%;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .kg-popup-content .wpforms-field.wpforms-field-checkbox ul.wpforms-field-required li input {
    width: 20px;
    max-width: fit-content;
}
.kg-register-webinar-popup-content .sg-popup-builder-content .sgpb-main-html-content-wrapper .kg-popup .kg-popup-content .wpforms-submit-container button.wpforms-submit {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    padding: 11px 20px;
    border-radius: 7px !important;
    font-size: 16px;
    font-weight: 500;
    background: #00abe6 !important;
}
.sgpb-popup-dialog-main-div-wrapper .sgpb-popup-dialog-main-div-theme-wrapper-1 img.sgpb-popup-close-button-1 {
    position: absolute;
    top: 20px;
    right: 20px !important;
    left: unset;
}

@media screen and (max-width: 767px){
    .sgpb-popup-dialog-main-div-theme-wrapper-1 {
        left: 0 !important;
        right: 0 !important;
        margin: auto !important;
    }
    #sgpb-popup-dialog-main-div.kg-register-webinar-popup-content {
        box-shadow: none!important;
        border-bottom-width: 0!important;
        border-radius: 14px!important;
        max-width: 100% !important;
        width: 80% !important;
        margin: auto;
        overflow: hidden !IMPORTANT;
        min-width: auto !important;
    }
}

/* Shop: country availability filter */
.kg-shop-country-filter {
    width: 100%;
    margin: 0 0 24px;
    position: relative;
}
.kg-shop-country-filter__label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.4;
    position: absolute;
    top: -9px;
    margin-left: 10px;
    background: #f8f8f8;
    padding: 0 5px;
    width: fit-content;
}
.kg-shop-country-filter__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    box-sizing: border-box;
}
.kg-shop-country-filter__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px 40px;
    flex: 1;
    min-width: 0;
}
.kg-shop-country-filter__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    color: #1a1a1a;
}
.kg-shop-country-filter__flag {
    width: 28px;
    height: auto;
    display: block;
    flex-shrink: 0;
    border-radius: 2px;
    object-fit: cover;
}
.kg-shop-country-filter__name {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}
.kg-shop-country-filter__checkbox {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #2f80ed;
    cursor: pointer;
}
.kg-shop-country-filter__clear {
    flex-shrink: 0;
    margin-left: auto;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.2;
    color: #2f80ed;
    background: #fff;
    border: 1px solid #2f80ed;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.kg-shop-country-filter__clear:hover {
    background: #2f80ed;
    color: #fff;
}


.kg-shop-ajax-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.template-shop .entry-content-wrapper.kg-shop-ajax-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 180px;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid #d0d5dd;
    border-top-color: #2f80ed;
    border-radius: 50%;
    animation: kg-shop-spin 0.7s linear infinite;
    z-index: 5;
}

@keyframes kg-shop-spin {
    to { transform: rotate(360deg); }
}

.kg-shop-country-filter__empty {
    margin: 20px 0;
}

@media screen and (max-width: 767px) {
    .kg-shop-country-filter__box {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .kg-shop-country-filter__list {
        gap: 14px 24px;
    }
    .kg-shop-country-filter__clear {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

.kg-product-main-image-custom-text .kg-geo-country-list .kg-country-item{
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 6px;
}

.kg-product-main-image-custom-text .kg-geo-country-list .kg-country-item img{
    width: 36px; 
    height: auto;
    display: block;
    padding-bottom: 10px;
}