.resources-navbar {
    background-color: #070E22;
    padding: 20px 0px;
}

.resources-navbar-white-line {
    background-color: white;
    height: 100px;
}

.resources-navbar-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.resources-title {
    font-size: 20px;
    font-weight: normal;
    color: white;
}

.navbar-right-link {
    color: rgba(255, 255, 255, 0.699);
    font-size: 16px;
    text-transform: uppercase;
    margin: 0px 10px;
    font-weight: 400;
}

.navbar-right-link:hover {
    color: rgb(255, 255, 255);
    /* text-decoration: none; */
}

.navbar-right-link-active {
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.resources-container {

}

.resources-content {
    margin-top: -35px;
}

.resources-subpage-title {
    background-color: black;
    color: white;
    width: max-content;
    padding: 10px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0px 0px 55px 0px;
    font-size: 32px;
    font-weight: 700;
}

.resources-subpage-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    overflow: hidden;
    width: 200px;
    height: 40px;
    background-color: #DADFF0;
    position: relative;
}

.toggle-btn {
    flex: 1;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    background: none;
    color: #1E2F47;
    border-radius: 25px;
    font-weight: bold;
}

.toggle-btn.active {
    border-radius: 25px;
    background: #1F3763;
    color: white;
    font-weight: bold;
}

.toggle-btn:not(.active):hover {
    color: #007bff;
}

.resources-subpage-toggle-subtext {
    color: #22273D;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.16px;
}

.hidden-tutorial {
    display: none;
}

.resources-tutorials-content-wrapper {
    display: flex;
    justify-content: space-between;
}

.resources-tutorials-not-found {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-tutorials-content-tutorials {
    width: 67%;
    margin-bottom: 10px;
}

.resources-tutorials-content-filters {
    width: 30%;
}

.resources-tutorials-tutorial {
    display: flex;
    margin: 20px 0px 10px 0px;
    background-color: white;
    box-shadow: 15px 10px 0px #1c60dd13;
    /* height: 250px; */
}

.resources-tutorials-tutorial-detailed-link {
    color: #070E22;
}

.resources-tutorials-tutorial-detailed-link:hover {
    color: #1C60DD;
}

.resources-tutorials-tutorial-img-wrapper {
    max-width: 40%;
}

.resources-tutorials-tutorial-img {
    max-width: 100%;
    height: auto;
}

.resources-tutorials-tutorial-date-title {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resources-tutorials-tutorial-title {
    font-size: 20px;
}

.resources-tutorials-content-filters-title {
    font-size: 24px;
}

.resources-tutorials-content-filters-input-wrappper {
    display: flex;
    justify-content: space-between;
}

.resources-tutorials-content-filters-search-input {
    border-radius: 20px;
    padding: 8px 15px;
    border: 1px solid black;
}

.resources-tutorials-content-filters-input-btns-wrappper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-tutorials-content-filters-search-button {
    border-radius: 50%;
    border: 1px solid #1C60DD;
    color: #1C60DD;
    background-color: white;
    width: 35px;
    height: 35px;
    /* margin: 0 auto; */
    font-size: 18px;
    transition: 0.5s ease;
    /* Вирівнювання іконки по центру */
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-tutorials-content-filters-search-button i {
    line-height: 1;
}

.resources-tutorials-content-filters-search-button-disabled {
    border: 1px solid #1c60dd77;
    color: #1c60dd77;
    background-color: #F7F8FB;
}

.resources-tutorials-content-filters-search-button-hovered {
    border: 1px solid white;
    color: white;
    background-color: #1C60DD;
}

.resources-tutorials-content-topics-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0px;
}

.resources-tutorials-content-topics-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: #EFF1F6;
    border-radius: 20px;
    border: 1px solid #070E22;
    color: #070E22;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.clear-search-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    width: 35px;
    height: 35px;
    border: 1px solid #1C60DD;
    border-radius: 50%;
    margin-left: 5px;
}

.clear-search-stick-1, .clear-search-stick-2 {
    width: 60%;
    height: 2px; 
    background-color: #1C60DD;
    transition: transform 0.4s ease-in-out;
}

.clear-search-stick-1 {
    transform: rotate(45deg);
    position: absolute;
}

.clear-search-stick-2 {
    transform: rotate(-45deg);
    position: absolute;
}

.clear-search-btn:hover .clear-search-stick-1 {
    transform: rotate(-45deg);
}

.clear-search-btn:hover .clear-search-stick-2 {
    transform: rotate(225deg);
}

.remove-tag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    width: 20px;
    height: 20px;
}

.remove-tag-stick-1, .remove-tag-stick-2 {
    width: 100%;
    height: 2px; 
    background-color: #1C60DD;
    transition: transform 0.4s ease-in-out;
}

.remove-tag-stick-1 {
    transform: rotate(45deg);
    position: absolute;
}

.remove-tag-stick-2 {
    transform: rotate(-45deg);
    position: absolute;
}

.resources-tutorials-content-topics-tag:hover .remove-tag-stick-1 {
    transform: rotate(-45deg);
}

.resources-tutorials-content-topics-tag:hover .remove-tag-stick-2 {
    transform: rotate(45deg);
}

.resources-tutorials-content-topics-tag:hover {
    color: #1C60DD;
    border: 1px solid #1C60DD;
}

.resources-tutorials-content-topics-tag.active {
    color: #1C60DD;
    border: 1px solid #1C60DD;
}

.resources-tutorials-tutorial-detailed-home-tut-title {
    font-size: 16px;
    margin: 40px 0px;
    display: flex;
    align-items: center;
}

.resources-tutorials-tutorial-detailed-home-tut-title-links {
    color: #1C60DD;
}

.resources-tutorials-tutorial-detailed-home-tut-title-arrows {
    font-size: 20px;    
    margin: 0px 5px;
}

.resources-tutorials-tutorial-detailed-date-title-image-wrapper {
    background-color: white;
    display: flex;
    /* width: 100vw;
    position: relative;
    left: calc(-50vw + 50%); */
    /* margin-bottom: 70px; */
}

.resources-tutorials-tutorial-detailed-content-wrapper {
    margin: 50px 0px;
}

.resources-tutorials-tutorial-detailed-date-title-wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.resources-tutorials-tutorial-detailed-image-wrapper {
    width: 50%;
}

.resources-tutorials-tutorial-detailed-issue-wrapper {
    background-color: white;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.resources-tutorials-tutorial-detailed-issue-text-wrapper {
    padding: 80px 0px;
    font-size: 16px;
    line-height: 1.5;
}

@media screen and (max-width: 991.5px) {
	.resources-navbar {
		display: none;
	}
    .resources-content {
        margin-top: -75px;
    }
    .resources-subpage-title {
        margin: 45px 0px 30px 0px;
    }
    .resources-tutorials-title {
        width: 100%;
    }
    .resources-tutorials-content-wrapper {
        flex-direction: column;
    }
    .resources-tutorials-content-tutorials {
        width: 100%;
    }
    .resources-tutorials-content-filters {
        width: 100%;
    }
    .resources-tutorials-content-filters-input-wrappper {
        justify-content: left;
    }
    .resources-tutorials-content-filters-input-btns-wrappper {
        margin-left: 5px;
    }
    .resources-tutorials-content-filters-title {
        margin-top: 0px;
    }
    .remove-tag-stick-1, .remove-tag-stick-2 {
        transition: transform 0s ease-in-out;
    }
    .resources-tutorials-tutorial-detailed-home-tut-title {
        margin: 20px 0px;
        flex-wrap: wrap;
        gap: 10px;
    }
    /* .resources-tutorials-tutorial-detailed-date-title-image-wrapper {
        margin-bottom: 40px;
    } */
    .resources-tutorials-tutorial-detailed-content-wrapper {
        margin: 25px 0px;
    }
    .resources-tutorials-tutorial-detailed-date-title-wrapper {
        width: 50%;
        padding-left: 15px;
    }
    .resources-tutorials-tutorial-detailed-image-wrapper {
        width: 50%;
    }
    .resources-tutorials-tutorial-detailed-date {
        padding: 15px 15px 0px 15px;
    }
    .resources-tutorials-tutorial-detailed-title {
        padding: 0px 15px;
        font-size: 30px;
        line-height: 1.2;
    }
    .resources-tutorials-tutorial-detailed-issue-text-wrapper {
        padding: 60px 15px;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
	.resources-navbar {
		display: none;
	}
    .resources-navbar-white-line {
        display: none;
    }
    .resources-content {
        margin-top: 0px;
    }
    .resources-subpage-title {
        font-size: 28px;
        padding: 2px 5px;
        width: 100%;
        margin: 45px 0px 30px 0px;
    }
    .resources-tutorials-title {
        width: 100%;
    }
    .resources-tutorials-content-wrapper {
        flex-direction: column;
    }
    .resources-tutorials-content-tutorials {
        width: 100%;
    }
    .resources-tutorials-content-filters {
        width: 100%;
    }
    .resources-tutorials-tutorial-img-wrapper {
        max-width: 35%;
        padding: 5px;
    }
    .resources-tutorials-tutorial-date-title {
        padding: 8px;
    }
    .resources-tutorials-tutorial-date {
        font-size: 14px;
    }
    .resources-tutorials-tutorial-title {
        font-size: 20px;
        line-height: 1.2;
        margin-top: 5px;
    }
    .resources-tutorials-content-filters-title {
        margin-top: 0px;
    }
    .resources-tutorials-tutorial-detailed-home-tut-title {
        margin: 20px 0px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .resources-tutorials-tutorial-detailed-date-title-image-wrapper {
        flex-direction: column-reverse;
        /* margin-bottom: 0px; */
    }
    .resources-tutorials-tutorial-detailed-content-wrapper {
        margin: 0px 0px;
    }
    .resources-tutorials-tutorial-detailed-date-title-wrapper {
        width: 100%;
        padding-left: 0px;
        margin: 0px 0px;
    }
    .resources-tutorials-tutorial-detailed-image-wrapper {
        width: 100%;
    }
    .resources-tutorials-tutorial-detailed-date {
        padding: 15px 15px 0px 15px;
    }
    .resources-tutorials-tutorial-detailed-title {
        padding: 0px 15px;
        font-size: 30px;
        line-height: 1.2;
    }
    .resources-tutorials-tutorial-detailed-issue-text-wrapper {
        padding: 60px 15px;
        text-align: center;
    }

    .resources-subpage-toggle {
        flex-direction: column-reverse;
        text-align: center;
    }
}

@media screen and (max-width: 477px) {
	.resources-navbar {
		display: none;
	}
    .resources-subpage-title {
        font-size: 24px;
        padding: 2px 5px;
        width: 100%;
        margin: 45px 0px 30px 0px;
    }
    .resources-tutorials-title {
        width: 100%;
    }
    .resources-tutorials-content-wrapper {
        flex-direction: column;
    }
    .resources-tutorials-content-tutorials {
        width: 100%;
    }
    .resources-tutorials-content-filters {
        width: 100%;
    }
    .resources-tutorials-tutorial {
        margin: 15px 0px 10px 0px;
        box-shadow: 10px 5px 0px #1c60dd13;
    }
    .resources-tutorials-tutorial-img-wrapper {
        max-width: 30%;
        padding: 5px;
    }
    .resources-tutorials-tutorial-date-title {
        padding: 5px;
    }
    .resources-tutorials-tutorial-date {
        font-size: 10px;
    }
    .resources-tutorials-tutorial-title {
        font-size: 13px;
        line-height: 1.1;
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .resources-tutorials-content-filters-title {
        font-size: 22px;
        margin-top: 0px;
    }
    .resources-tutorials-content-topics-tag {
        padding: 8px 15px;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }
    /*----------------------------------------------*/
    .resources-tutorials-tutorial-detailed-home-tut-title {
        margin: 20px 0px;
        flex-wrap: wrap;
        gap: 10px;
    }
    .resources-tutorials-tutorial-detailed-date-title-image-wrapper {
        flex-direction: column-reverse;
        width: 100vw;
        position: relative;
        left: calc(-50vw + 50%);
        /* margin-bottom: 0px; */
    }
    .resources-tutorials-tutorial-detailed-content-wrapper {
        margin: 0px 0px;
    }
    .resources-tutorials-tutorial-detailed-date-title-wrapper {
        width: 100%;
        padding-left: 0px;
        margin: 0px 0px;
    }
    .resources-tutorials-tutorial-detailed-image-wrapper {
        width: 100%;
    }
    .resources-tutorials-tutorial-detailed-date {
        padding: 15px 15px 0px 15px;
    }
    .resources-tutorials-tutorial-detailed-title {
        padding: 0px 15px;
        font-size: 24px;
        line-height: 1.2;
    }
    .resources-tutorials-tutorial-detailed-issue-text-wrapper {
        padding: 40px 15px;
        text-align: center;
        font-size: 14px;
    }

    .resources-subpage-toggle-subtext {
        font-size: 14px;
    }
}