

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --banner-bg: linear-gradient(134deg, #ff3c00 0%, #fb0 100%); /* цвет фона */
    --font-family: "Inter", sans-serif;
    --font-size-descr: 12px; /* размер шрифта - 2я строка */
    --font-size-title: 10px; /* размер шрифта - 1я строка */
    --font-size-btn: 14px; /* размер шрифта - кнопка */
    --text-color: #ffffff; /* цвет текста */
    
    --btn-color: #e4460a; /* цвет текста кнопки */
    --btn-bg: #FFFFFF; /* фон кнопки */
    --btn-shadow: inset 0 4px 4px 0 rgba(69, 69, 69, 0.25), inset 0 1px 1px 0 rgba(255, 255, 255, 0.4), 2px 2px 10px 0 rgba(255, 128, 1, 0.3);
background: #fff; /* тень кнопки */
}

.custom-banner-wrapper {
	position: fixed;
	z-index: 500;
    bottom: 6px;
    max-width: 100%;
    width: 541px;
    min-height: 64px;
    padding: 8px 40px 8px 74px;
    background: var(--banner-bg);
    overflow: hidden;
    box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.08)
}

.lt-block.lt-editing .custom-banner-wrapper {
	position: unset;
}

.custom-banner-wrapper:after {
	position: absolute;
	bottom: -16px;
    right: -6px;
    content: "";
    display: block;
    width: 45px;
    height: 48px;
    background-image: url(https://fs.getcourse.ru/fileservice/file/download/a/113838/sc/127/h/b4fe71d954e29a97d4878a495f51f173.webp);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(23.42deg);
    display: none;
}

.custom-banner-content {
		display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 4px;
}

.custom-banner-img img {
	position: absolute;
    bottom: -41%;
    z-index: -1;
    left: 0;
    max-width: 74px;
}

.custom-banner-text__title {
		margin-bottom: 3px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--font-size-title);
    line-height: 110%;
    text-transform: uppercase;
    color: var(--text-color);
}

.custom-banner-text__descr {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: var(--font-size-descr);
    line-height: 105%;
    text-transform: uppercase;
    color: var(--text-color);
}

.custom-banner-btn {
	position: relative;
	flex-shrink: 0;
	max-width: 145px;
	width: 100%;
}

.custom-banner-btn:after {
	position: absolute;
	top: -16px;
    left: -19px;
    content: "";
    display: block;
    width: 36px;
    height: 45px;
    background-image: url(https://fs.getcourse.ru/fileservice/file/download/a/113838/sc/487/h/26af6c36208e884c049699422eb79714.webp);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-31.75deg);
    display: none;
}

.custom-banner-btn a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
  	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	font-family: var(--font-family);
	font-weight: 800;
	font-size: var(--font-size-btn);
	text-align: center;
	color: var(--btn-color);
	text-decoration: none;
	border-radius: 10px;
	text-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
	box-shadow: var(--btn-shadow);
	background: var(--btn-bg);
}

.custom-banner-btn a span {
	font-family: var(--font-family);
	font-style: italic;
	font-weight: 500;
	font-size: 8px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
}

.custom-banner-close {
    position: absolute;
    top: 2px;
    right: 8px;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(241deg) brightness(103%) contrast(103%);
}

@media (max-width: 768px) {
	.custom-banner-wrapper {
    bottom: 50px;
	}
}

@media (max-width: 540px) {
	:root {
    --font-size-descr: 9px; /* размер шрифта - 2я строка */
    --font-size-title: 9px; /* размер шрифта - 1я строка */
    --font-size-btn: 11px; /* размер шрифта - кнопка */
	}
	
	.custom-banner-wrapper {
        width: 100%;
        max-width: 360px;
				bottom: 67px;
		    padding: 9px 40px 9px 88px;
	}
	
	.custom-banner-wrapper:after {
        bottom: 10px;
        right: -5px;
	}

	.custom-banner-content {
        flex-direction: column;
        align-items: flex-start;
        max-width: 276px;
	}
	
	.custom-banner-img img {
        max-width: 89px;
    }
	
	.custom-banner-btn {
    max-width: 201px;
	}
	
	.custom-banner-btn:after {
        left: unset;
        top: 5px;
        right: -39px;
	}
	
	.custom-banner-btn a {
    min-height: 23px;
    flex-direction: row;
    justify-content: center;
    padding: 0 15px;
	}
}

@media (max-width: 350px) {
	:root {
    --font-size-title: 8px; /* размер шрифта - 1я строка */
	}
	
	.custom-banner-wrapper:after {
        width: 34px;
    }

    .custom-banner-btn:after {
        width: 30px;
        height: 36px;
    }
    
    .custom-banner-close {
        top: 3px;
        right: 5px;
    }

}
