/*
Theme Name: mebel-mars
Author: CTR99
Author URI: https://ctr99.ru/
Description: Разработано в апреле 2024
Version: 1.0
*/

/*Цвета*/
body{
	--white: #FFFFFF;
	--gray: #A0A8B1;
    --light-gray: #F1F1F1;
    --dark-gray: #747474; 
    --light-black: #32312f;
    --black: #32312F;
    --red: #FF0011;
    --dark-red: #cd0000;
}
/*/Цвета*/

body{
	color: var(--black);
}

h2,
h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

a {
    color: var(--black);
}


.rounded-block {
    border-radius: 15px;
}


.shadow-block {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: none;
}



.btn-red,
.container a.btn-red {
    background-color: var(--red);
    border-radius: 5px;
    padding: 10px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--red);
    font-weight: 600;
    text-align: center;
}

.btn-red:hover {
    color: var(--red);
    background-color: var(--white);
    border: 1px solid var(--red);
}


/*хлебные крошки*/
main section.breadcrumbs a {
    color: var(--black);
    text-decoration: none;
}

main section.breadcrumbs span.active {
    color: var(--gray);
}

main section.breadcrumbs a:hover {
    color: var(--dark-red);
}


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

.blockquote {
	font-size: 1rem;
}


.btn-white,
.container .btn-white {
    border: 1px solid var(--red);
    color: var(--red);
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    width: fit-content;
    text-align: center;
}

.btn-white:hover {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

.container a.btn-white:hover {
    color: var(--white);
}

.container a.btn-red {
    color: var(--white);
}

.container a.btn-red:hover {
    color: var(--red);
    background-color: var(--white);
}

.telegram-icon {
    height: 58px;
    width: 58px;
    border-radius: 100%;
    background: #2AABEE;
    border: 5px solid #cdebfb;
    display: flex;
    align-items: center;
    animation: blink 10s infinite both;
    position: fixed;
    bottom: 65px;
    right: 65px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .telegram-icon {
        height:48px;
        width: 48px;
        bottom: 20px;
        right: 20px;
    }
}

.telegram-icon:hover {
    cursor: pointer;
}

.telegram-icon svg.telegram {
    margin-left: 3px;
}

.telegram-icon svg.telegram path {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .telegram-icon svg.telegram {
        width:28px;
        height: 28px;
    }
}

@keyframes blink {
    0%,50%,100% {
        border-color: #2AABEE;
    }

    25%,75% {
        border-color: #cdebfb;
    }
}
