.le-main-container .le-side-panel .le-side-panel-ads {
    margin: 10px;
    overflow: hidden;
    background-color: #ffffff;
}

.le-affiliate-ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* creates 2 columns with equal width */
    gap: 7px; /* Optional: Adds space between the grid items */
    width: 100%; /* Ensure the container takes the full width */
    padding:7px;
}
.le-affiliate-ads .le-affiliate-ads-item {
    max-width: 50%;
    padding: 5px; /* Optional: Adds padding inside each grid item */
    border: 1px solid #ccc; /* Optional: Adds a border around each grid item */
    
    white-space: nowrap;
    overflow: hidden; /* Prevents content from overflowing */
    text-overflow: ellipsis; /* Adds an ellipsis when text overflows */
    max-width: 100%; /* Ensures that grid items do not stretch beyond their column */
    position: relative;
    cursor: pointer;
}
.le-affiliate-ads .le-shopee-ads-item {
   padding: 0;
}
.le-affiliate-ads .le-affiliate-ads-item:hover {
    border-color:rgb(223, 0, 0)
}

.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-image {
    height: 54px;
    width: auto;
    /* margin:4px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.le-affiliate-ads .le-shopee-ads-item .le-affiliate-ads-item-image {
    width: 100%;
    height: 120px;
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-image img{
    max-height: 100%;
    border: none;
}
.le-affiliate-ads .le-shopee-ads-item .le-affiliate-ads-item-image img{
    border: none;
    width: 100%;
    height: auto;
    max-height: none;
}
.le-affiliate-ads .le-shopee-ads-item .le-affiliate-ads-item-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    padding: 5px;
    opacity: 0;
}
.le-affiliate-ads .le-shopee-ads-item:hover .le-affiliate-ads-item-desc {
    background-color: #ffffffcc;
    opacity: 1;
}
.le-affiliate-ads .le-shopee-ads-item:hover img{
    filter: blur(8px);
    -webkit-filter: blur(8px);
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-title {
    font-size: 12px;
    margin: 8px 4px 4px;
    display: block;
    line-height: 14px;
    text-decoration: none !important;
    word-wrap: break-word !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis !important;
    overflow: hidden;
    color: #000000;
}
.le-affiliate-ads .le-shopee-ads-item .le-affiliate-ads-item-desc .le-affiliate-ads-item-title {
    word-wrap: normal !important;
    white-space:normal!important;
    overflow: hidden !important;
    color: #000000;
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from span {
    color:#FF7A03;
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
    color:black;
}
.le-affiliate-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed span {
    color:#d78114;
}
.le-affiliate-ads .le-affiliate-ads-logo-container {
    display: flex;
    justify-content: flex-end;
}

.le-shopee-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo {
    background-image: none;
    background-size: cover;  /* Adjust this as necessary */
    background-repeat: no-repeat;
    height: 35px;
    width: 200px;
    background-size: auto 30px;
    background-position: center right;
    margin-right: 8px;
    padding-bottom: 4px;
    display: flex;
    justify-content: end;
}
.le-shopee-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo svg{
    height: 100%;
}
.le-shopee-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo svg path{
    fill: #ee4d2d;
}

/*default (large image)*/
.le-default-ads .le-affiliate-ads-item {
    max-width: 50%;
    padding: 5px; /* Optional: Adds padding inside each grid item */
    border: 1px solid #ccc; /* Optional: Adds a border around each grid item */
    
    white-space: nowrap;
    overflow: hidden; /* Prevents content from overflowing */
    text-overflow: ellipsis; /* Adds an ellipsis when text overflows */
    max-width: 100%; /* Ensures that grid items do not stretch beyond their column */
    position: relative;
    cursor: pointer;
    padding: 0;
}
.le-default-ads .le-affiliate-ads-item:hover {
    border-color:rgb(223, 0, 0)
}

.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-image {
    height: 54px;
    width: auto;
    /* margin:4px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
}

.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-image img{
    max-height: 100%;
    border: none;
    width: 100%;
    height: auto;
    max-height: none;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    padding: 5px;
    opacity: 0;
}
.le-default-ads .le-affiliate-ads-item:hover .le-affiliate-ads-item-desc {
    background-color: #ffffffcc;
    opacity: 1;
}
.le-default-ads .le-affiliate-ads-item:hover img{
    filter: blur(8px);
    -webkit-filter: blur(8px);
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-title {
    font-size: 12px;
    margin: 8px 4px 4px;
    display: block;
    line-height: 14px;
    text-decoration: none !important;
    word-wrap: normal !important;
    white-space: normal !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis !important;
    color: #000000;
    overflow: hidden !important;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from span {
    color:#FF7A03;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
    color:black;
    display: none;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-overlay {
    line-height: 1.3;
    font-size: 12px;
    -mys-overflow-limit: 0;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 100%;
    display: block;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px 0 0 0;
}
.le-default-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed span {
    color:#d78114;
}
.le-default-ads .le-affiliate-ads-logo-container {
    display: flex;
    justify-content: flex-end;
}
.le-default-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo {
    display: flex;
    justify-content: end;
    background-image: none;
    background-size: cover;  /* Adjust this as necessary */
    background-repeat: no-repeat;
    height: 35px;
    width: 200px;
    background-size: auto 30px;
    background-position: center right;
    margin-right: 4px;
    padding: 5px 0;
}
.le-default-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo img{
    max-height: 100%;
}
/*end: default (large image)*/



/*aliexpress (large image)*/
.le-aliexpress-ads .le-affiliate-ads-item {
    max-width: 50%;
    padding: 5px; /* Optional: Adds padding inside each grid item */
    border: 1px solid #ccc; /* Optional: Adds a border around each grid item */
    
    white-space: nowrap;
    overflow: hidden; /* Prevents content from overflowing */
    text-overflow: ellipsis; /* Adds an ellipsis when text overflows */
    max-width: 100%; /* Ensures that grid items do not stretch beyond their column */
    position: relative;
    cursor: pointer;
    padding: 0;
}
.le-aliexpress-ads .le-affiliate-ads-item:hover {
    border-color:rgb(223, 0, 0)
}

.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-image {
    height: 54px;
    width: auto;
    /* margin:4px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
}

.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-image img{
    max-height: 100%;
    border: none;
    width: 100%;
    height: auto;
    max-height: none;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    padding: 5px;
    opacity: 0;
}
.le-aliexpress-ads .le-affiliate-ads-item:hover .le-affiliate-ads-item-desc {
    background-color: #ffffffcc;
    opacity: 1;
}
.le-aliexpress-ads .le-affiliate-ads-item:hover img{
    filter: blur(8px);
    -webkit-filter: blur(8px);
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-title {
    font-size: 12px;
    margin: 8px 4px 4px;
    display: block;
    line-height: 14px;
    text-decoration: none !important;
    word-wrap: normal !important;
    white-space: normal !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis !important;
    color: #000000;
    overflow: hidden !important;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from span {
    color:#FF7A03;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
    color:black;
    display: none;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-overlay {
    line-height: 1.3;
    font-size: 12px;
    -mys-overflow-limit: 0;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 100%;
    display: block;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px 0 0 0;
}
.le-aliexpress-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed span {
    color:#d78114;
}
.le-aliexpress-ads .le-affiliate-ads-logo-container {
    display: flex;
    justify-content: flex-end;
}
.le-aliexpress-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo {
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2257.573334mm%22%20height%3D%2213.387917mm%22%20viewBox%3D%220%200%2057.573334%2013.387917%22%20version%3D%221.1%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23E43225%3B%7D%20.st1%7Bfill%3A%23F7971D%3B%7D%20%3C%2Fstyle%3E%20%3Cg%20transform%3D%22translate%28-76.290715%2C-142.89532%29%22%3E%20%3Cg%20transform%3D%22matrix%280.26458333%2C0%2C0%2C0.26458333%2C38.931549%2C83.337617%29%22%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20195.5%2C262.8%20v%20-33.5%20h%2019.8%20v%204.2%20h%20-15.7%20v%2010.3%20h%2014.1%20v%204.2%20h%20-14.1%20v%2010.5%20h%2016.8%20v%204.2%20h%20-20.9%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20237.2%2C262.8%20-6.8%2C-8.9%20-6.8%2C8.9%20h%20-4.8%20l%209.3%2C-11.9%20-9.8%2C-12.3%20h%205.4%20l%206.7%2C9.2%206.8%2C-9.2%20h%205.3%20l%20-9.3%2C12.3%208.8%2C11.9%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20248.6%2C259.2%20v%2016.5%20h%20-4.1%20V%20251%20c%200%2C-6.3%204.8%2C-13%2012.3%2C-13%207.6%2C0%2013.3%2C4.8%2013.3%2C12.7%200%2C7.7%20-5.8%2C13%20-12.4%2C13%20-3.2%2C0%20-7.5%2C-1.4%20-9.1%2C-4.5%20z%20m%2017.2%2C-8.5%20c%200%2C-5.4%20-3.5%2C-8.6%20-9.7%2C-8.3%20-3%2C0.1%20-7.6%2C2.3%20-7.2%2C10%200.1%2C2.5%202.7%2C7.2%208.4%2C7.2%204.9%2C0%208.5%2C-2.8%208.5%2C-8.9%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20273.6%2C262.8%20v%20-24.2%20h%204.1%20v%202.6%20c%202%2C-2.3%205.1%2C-3.1%208.4%2C-3.1%20v%204.4%20c%20-0.5%2C-0.1%20-5.4%2C-0.7%20-8.4%2C5.7%20v%2014.7%20h%20-4.1%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20287.2%2C250.7%20c%200%2C-7%205%2C-12.7%2011.9%2C-12.7%208.6%2C0%2011.8%2C5.7%2011.8%2C13%20v%202%20h%20-19.2%20c%200.3%2C4.6%204.4%2C7%208.2%2C6.9%202.8%2C-0.1%204.7%2C-0.9%206.7%2C-2.9%20l%202.7%2C2.8%20c%20-2.5%2C2.4%20-5.7%2C4%20-9.6%2C4%20-7.3%2C-0.1%20-12.5%2C-5.5%20-12.5%2C-13.1%20z%20m%2011.6%2C-8.6%20c%20-3.9%2C0%20-6.9%2C3.4%20-7.1%2C7.1%20h%2014.9%20c%200%2C-3.6%20-2.6%2C-7.1%20-7.8%2C-7.1%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20313%2C259.4%20c%200%2C0%203%2C-2.7%203%2C-2.7%20-0.1%2C0%201.5%2C1.6%201.7%2C1.7%200.7%2C0.6%201.4%2C1%202.3%2C1.2%202.6%2C0.7%207.3%2C0.5%207.7%2C-3.1%200.2%2C-2%20-1.3%2C-3.1%20-3%2C-3.8%20-2.2%2C-0.8%20-4.6%2C-1.1%20-6.8%2C-2.1%20-2.5%2C-1.1%20-4.1%2C-3%20-4.1%2C-5.8%200%2C-7.3%2010.4%2C-8.5%2015.1%2C-5.1%200.2%2C0.2%202.5%2C2.3%202.4%2C2.3%20l%20-3%2C2.4%20c%20-1.5%2C-1.8%20-2.9%2C-2.7%20-6.1%2C-2.7%20-1.6%2C0%20-3.8%2C0.7%20-4.2%2C2.4%20-0.6%2C2.4%202.1%2C3.3%203.9%2C3.8%202.4%2C0.6%205%2C1%207.1%2C2.3%202.9%2C1.8%203.6%2C5.7%202.5%2C8.7%20-1.2%2C3.3%20-4.8%2C4.6%20-8%2C4.7%20-3.8%2C0.2%20-7.1%2C-1%20-9.8%2C-3.7%20-0.2%2C0%20-0.7%2C-0.5%20-0.7%2C-0.5%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20334.1%2C259.4%20c%200%2C0%203%2C-2.7%203%2C-2.7%20-0.1%2C0%201.5%2C1.6%201.7%2C1.7%200.7%2C0.6%201.4%2C1%202.3%2C1.2%202.6%2C0.7%207.3%2C0.5%207.7%2C-3.1%200.2%2C-2%20-1.3%2C-3.1%20-3%2C-3.8%20-2.2%2C-0.8%20-4.6%2C-1.1%20-6.8%2C-2.1%20-2.5%2C-1.1%20-4.1%2C-3%20-4.1%2C-5.8%200%2C-7.3%2010.4%2C-8.5%2015.1%2C-5.1%200.2%2C0.2%202.5%2C2.3%202.4%2C2.3%20l%20-3%2C2.4%20c%20-1.5%2C-1.8%20-2.9%2C-2.7%20-6.1%2C-2.7%20-1.6%2C0%20-3.8%2C0.7%20-4.2%2C2.4%20-0.6%2C2.4%202.1%2C3.3%203.9%2C3.8%202.4%2C0.6%205%2C1%207.1%2C2.3%202.9%2C1.8%203.6%2C5.7%202.5%2C8.7%20-1.2%2C3.3%20-4.8%2C4.6%20-8%2C4.7%20-3.8%2C0.2%20-7.1%2C-1%20-9.8%2C-3.7%20-0.2%2C0%20-0.7%2C-0.5%20-0.7%2C-0.5%20z%22%20%2F%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M%20353.6%2C238.6%20V%20236%20h%20-0.9%20v%20-0.5%20h%202.4%20v%200.5%20h%20-0.9%20v%202.6%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22m%20358.1%2C238.6%20v%20-2.4%20l%20-0.9%2C2.4%20H%20357%20l%20-0.9%2C-2.4%20v%202.4%20h%20-0.5%20v%20-3.1%20h%200.8%20l%200.8%2C2.1%200.8%2C-2.1%20h%200.8%20v%203.1%20z%22%20%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3Cg%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22m%20167.7%2C262.8%20-3%2C-8%20h%20-16.2%20l%20-3%2C8%20h%20-4.3%20l%2013%2C-33.5%20h%204.7%20l%2012.9%2C33.5%20z%20m%20-11.3%2C-28.7%20-6.1%2C16.6%20H%20163%20Z%22%20%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22m%20174.5%2C262.8%20v%20-33.5%20h%204.2%20v%2033.5%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22m%20185%2C262.8%20v%20-23.7%20h%204.2%20v%2023.7%20z%22%20%2F%3E%20%3Cpath%20class%3D%22st1%22%20d%3D%22m%20193.2%2C231.4%20c%200%2C-0.1%200%2C-0.1%200%2C-0.2%200%2C-0.1%200%2C-0.1%200%2C-0.2%20-3.2%2C-0.1%20-5.8%2C-2.7%20-5.9%2C-5.9%20-0.1%2C0%20-0.2%2C0%20-0.3%2C0%20-0.1%2C0%20-0.2%2C0%20-0.3%2C0%20-0.1%2C3.2%20-2.7%2C5.8%20-5.9%2C5.9%200%2C0.1%200%2C0.1%200%2C0.2%200%2C0.1%200%2C0.1%200%2C0.2%203.2%2C0.1%205.8%2C2.7%205.9%2C5.9%200.1%2C0%200.2%2C0%200.3%2C0%200.1%2C0%200.2%2C0%200.3%2C0%200.1%2C-3.2%202.7%2C-5.8%205.9%2C-5.9%20z%22%20%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%20%3C%2Fsvg%3E');
    background-size: cover;  /* Adjust this as necessary */
    background-repeat: no-repeat;
    height: 35px;
    width: 200px;
    background-size: auto 30px;
    background-position: center right;
    margin-right: 4px;
}
/*end: aliexpress (large image)*/

/*myntra (india) (large image)*/
.le-myntra-ads .le-affiliate-ads-item {
    max-width: 50%;
    padding: 5px; /* Optional: Adds padding inside each grid item */
    border: 1px solid #ccc; /* Optional: Adds a border around each grid item */
    
    white-space: nowrap;
    overflow: hidden; /* Prevents content from overflowing */
    text-overflow: ellipsis; /* Adds an ellipsis when text overflows */
    max-width: 100%; /* Ensures that grid items do not stretch beyond their column */
    position: relative;
    cursor: pointer;
    padding: 0;
}
.le-myntra-ads .le-affiliate-ads-item:hover {
    border-color:rgb(223, 0, 0)
}

.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-image {
    height: 54px;
    width: auto;
    /* margin:4px; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
}

.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-image img{
    max-height: 100%;
    border: none;
    width: 100%;
    height: auto;
    max-height: none;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    padding: 5px;
    opacity: 0;
}
.le-myntra-ads .le-affiliate-ads-item:hover .le-affiliate-ads-item-desc {
    background-color: #ffffffcc;
    opacity: 1;
}
.le-myntra-ads .le-affiliate-ads-item:hover img{
    filter: blur(3px);
    -webkit-filter: blur(3px);
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-title {
    font-size: 12px;
    margin: 8px 4px 4px;
    display: block;
    line-height: 14px;
    text-decoration: none !important;
    word-wrap: normal !important;
    white-space: normal !important;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis !important;
    color: #000000;
    overflow: hidden !important;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-from span {
    color:#FF7A03;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed {
    font-size: 12px;
    display: flex;
    justify-content: center;
    line-height: 14px;
    text-decoration: none !important;
    color:black;
    display: none;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-overlay {
    line-height: 1.3;
    font-size: 12px;
    -mys-overflow-limit: 0;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 100%;
    display: block;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 6px 0 0 0;
}
.le-myntra-ads .le-affiliate-ads-item .le-affiliate-ads-item-price-fixed span {
    color:#d78114;
}
.le-myntra-ads .le-affiliate-ads-logo-container {
    display: flex;
    justify-content: flex-end;
}
.le-myntra-ads .le-affiliate-ads-logo-container .le-affiliate-ads-logo {
    background-image: none;
    background-size: cover;  /* Adjust this as necessary */
    background-repeat: no-repeat;
    height: 35px;
    width: 200px;
    background-size: auto 30px;
    background-position: center right;
    margin-right: 8px;
}
/*end: myntra (large image)*/

.le-ukr-ads {

}

.le-ukr-ads .le-ukr-savelife-ads {
    padding: 20px;
    background-color: #2c2c2c;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-logo img {
    width: 210px;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 10px 0;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-button a {
    background-color: #5b7742;
    color: #fff;
    font-family: Laqonic, sans-serif;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border-width: 3px;
    border-style: solid;
    border-color: #000 !important;
    height: 44px;
    width: auto;
    padding: 0;
    overflow: hidden;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-decoration: none;
    outline: 8px solid white;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-button a:hover {
    background-color: #425730;
    color: #fff;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-btn-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    width: 42px;
    height: 44px;
    border-right: 3px solid black;
}
.le-ukr-ads .le-ukr-savelife-ads .le-ukr-ads-btn-text {
    font-family: inherit;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    padding: 8px 14px;
    text-transform: uppercase;
    flex: 1;
}

.le-ukr-ads .le-ukr-prytula-ads {
    padding: 20px;
    background-color: #111;
}

.download_ads {
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    padding-top: 10px;
}