

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

.character {
	position: absolute;
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: transform 0.5s ease;
    z-index: 999;
}

.character__container {
	display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.character__img {
    width: 100px;
    height: 100px;
}

.character__text {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
	font-size: 16px;
    text-align: center;
    color: #fff;
    background: #039449;
    border-radius: 10px;
    padding: 3px 5px;
}

.modal-character {
	position: fixed!important;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    overflow: auto;
}

.modal-character__container {
    position: relative;
	max-width: 1100px;
    padding: 120px 368px 100px 80px;
    border-radius: 40px;
    background: url("https://edu.i-sales.pro/pl/fileservice/user/file/download/h/67dfa7fb866e5f15fc34872d607367d4.png") no-repeat calc(100% - 30px) bottom, url("https://edu.i-sales.pro/pl/fileservice/user/file/download/h/3ad2dc962c63d018075fa3a1f2d46895.jpg") no-repeat center center / cover;
    margin: auto;
}

.modal-character__close-button {
	position: absolute;
    top: 20px;
    right: 20px;
    display: block;
    width: 25px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    background: url("https://edu.i-sales.pro/pl/fileservice/user/file/download/h/8f394116888f4e1619a7b152d0bc619e.svg") no-repeat center center;
}

.modal-character__text {
	font-family: "Oswald", Arial, sans-serif;
    font-weight: 500;
    font-size: 63px;
    text-align: center;
    text-transform: uppercase;
    color: #ee5124;
    margin-bottom: 30px;
}

.modal-character__button {
    display: block;
    width: fit-content;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    color: #fff;
    border: none;
	border-radius: 10px;
    background: url("https://edu.i-sales.pro/pl/fileservice/user/file/download/h/ea9a0f6580f16f711b218d1c812de8fb.jpg") no-repeat center center / cover;
    padding: 37px 20px;
    margin: 0 auto;
    user-select: none;
    cursor: pointer;
    transition: background-position-x .3s;
}

.modal-character__button:hover {
	text-decoration: none;
    color: #fff;
    background-position-x: -30px;
}

.modal-character__button:active {
	color: #d9d4d4;
}


@media (max-width: 1100px) {
    
    .modal-character__container {
        width: calc(100% - 20px);
        padding: 45px 30px;
        background: url("https://edu.i-sales.pro/pl/fileservice/user/file/download/h/3ad2dc962c63d018075fa3a1f2d46895.jpg") no-repeat center center / cover;
    }
    
    .modal-character__text {
    	font-size: 34px;
        margin-bottom: 20px;
    }
    
    .modal-character__button {
        font-size: 20px;
    	padding: 10px 20px;
    }
    
    .modal-character__button:hover {
        background-position-x: 0px;
    }
}
