/* Start Global Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* End Global Rules */
.show-error-message {
    display: block !important;
}

.s-m-e {
    cursor: pointer;
}

.error-input {
    border: 2px solid #e32129 !important;
}

.error-input:focus {
    border: 2px solid #e32129 !important;
}

.show-message-explain {
    cursor: pointer;
}