.container {
    padding-left: 0px;
    padding-right: 0px;
    min-width: 320px;
}

/* !------------------------------------------------------------! */
/* !------------------------- Accordion ------------------------! */
/* !------------------------------------------------------------! */

.accordion .card-header {
    background: transparent;
    border: none;
}

.accordion .card-header {
    padding: 1rem 1.5rem;
}

.accordion .card .card-header > button {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem 0.75rem 3rem;
    background: transparent;
    border: none;
    color: #1e1e1e;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
}
.accordion .card-header > button:hover,
.accordion .card-header > button:active,
.accordion .card-header > button:focus {
    text-shadow: -0.03ex 0 #1e1e1e, 0.03ex 0 #1e1e1e;
}

.accordion .card-header > button.collapsed:after {
    content: url("../img/section-faq/icon-plus.svg");
}
.accordion .card-header > button.collapsed:hover:after,
.accordion .card-header > button.collapsed:active:after,
.accordion .card-header > button.collapsed:focus:after {
    content: url("../img/section-faq/icon-plus-black.svg");
}

.accordion .card-header > button::after {
    content: url("../img/section-faq/icon-minus.svg");
    position: absolute;
    left: 1rem;
    display: inline-block;
    font: normal normal normal 14px/1 "Ionicons";
    font-size: 1.3125rem;
    text-transform: none;
    text-rendering: auto;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* !------------------------------------------------------------! */
/* !------------------------- Carousel -------------------------! */
/* !------------------------------------------------------------! */

.carousel-indicators li {
    pointer-events: none;
    width: 10px;
    height: 10px;
    margin-left: 18px;
    border-radius: 50%;
    opacity: 0.2;
}

/* !------------------------------------------------------------! */
/* !-------------------------- Modal ---------------------------! */
/* !------------------------------------------------------------! */

.modal-header .close {
    padding: 1.25rem;
}

.modal.fade:not(.show) .modal-dialog.modal-dialog-zoom-in {
    transform: scale(0);
}

/* !------------------------------------------------------------! */
/* !-------------------------- Tooltip -------------------------! */
/* !------------------------------------------------------------! */

.tooltip.show {
    opacity: 0.95;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #5a5a64;
}

.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #5a5a64;
}

.tooltip-inner {
    max-width: 300px;
    padding: 1rem;
    line-height: 1.25rem;
    background-color: #5a5a64;
    border-radius: 10px;
}

/* !------------------------------------------------------------! */
/* !--------------------- Responsive block ---------------------! */
/* !------------------------------------------------------------! */

/* 2. Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
}

/* 5. Phone vertical */
@media (min-width: 0px) and (max-width: 575px) {
    .container {
        padding: 0 20px;
    }

    .accordion .card-header {
        padding: 1rem 0;
    }
}

