@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&amp;display=swap');

html {
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
}

.page-content {
    max-width: 1050px;
}

.timer {
    overflow: hidden;
    max-height: 0;
    max-width: 1050px;
    background-color: #2e2b62;
    -webkit-transition: all 750ms cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 750ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 750ms cubic-bezier(0.4, 0, 0.2, 1);
}

mark {
    color: white;
    font-weight: bold;
    margin: 0 -0em;
    padding: 0.1em 0.4em;
    border-radius: 0.25em;
    background: transparent;
    background-image: linear-gradient(to right,
            rgba(241, 33, 20, 1),
            rgba(241, 33, 20, 1) 4%,
            rgba(241, 33, 20, 1));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.sticky-container1 {
    z-index: 999;
    position: sticky;
    top: 0;
}

.timer.shown {
    max-height: 150px;
}

.unaccepted-modal {
    max-width: 90%;
    background-color: white;
    border: 2px solid #f12114;
    border-radius: 10px;
    padding: 13px 15px;
}

.unaccepted-modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #292929;
}

.unaccepted-modal-text {
    text-align: justify;
}

.timer-text {
    font-weight: bold;
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    font-size: 0.8rem;
}

.quiz-model {
    -webkit-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-question {
    color: #1f1f1f;
    font-weight: bold;
    text-align: left;
    font-size: 1.8rem;
}

.quiz-question-description {
    color: #6b6b6b;
    text-align: left;
    font-size: 1rem;
}

.question-counter {
    font-size: 1rem;
    font-weight: bold;
    color: #fec708;
}

.question-counter-number {
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 50px;
    font-size: 1.7rem;
    color: white;
    background-image: linear-gradient(to right,
            rgba(241, 33, 20, 1),
            rgba(241, 33, 20, 1) 4%,
            rgba(241, 33, 20, 1));
}

.header-content {
    background: transparent;
    background-image: linear-gradient(to bottom, #000000, #000000);
    width: 100%;
    padding: 13px 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px 30px;
    border-radius: 8px;
    text-align: center;
    width: 90% !important;
    max-width: 950px !important;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.5s;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.close-icon {
    position: absolute;
    top: 8px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

.faq-question {
    border: 2px solid rgb(212, 212, 212);
    border-radius: 5px;
    padding: 10px;
}

.faq-modal-icon {
    color: white;
}

.faq-modal-icon:hover {
    color: rgb(214, 214, 214) !important;
}

.faq {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: bold;
}

.faq-description {
    transition: height 0.3s ease;
}

.page {
    max-width: 620px;
    width: 90%;
    text-align: justify;
}

.page-title,
.loading-title,
.final-page-title {
    font-weight: bold;
    color: #032f72;
    text-align: left;
    font-size: 1.8rem;
}

.loading-subtitle {
    margin-top: 10px;
    color: #838383;
    text-align: left;
    font-size: 1rem;
}

.main-image {
    width: 95%;
    height: auto;
    max-width: 500px;
}

.sticky-container {
    padding-bottom: 40px;
    position: sticky;
    bottom: 0;
}

.start-quiz-button {
    width: 100%;
    border-radius: 15px;
    border: 2px solid white;
    background-color: #f12114;
    box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.45);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
}

.quiz-answer {
    font-weight: bold;
    border-radius: 15px;
    width: 100%;
    margin-top: 26px;
    border: 2px solid white;
    background-color: #f12114;
    color: white;
    padding: 10px 0px;
    font-size: 1.05rem;
    cursor: pointer;
}

.unaccepted-modal-button {
    width: 90%;
    border-radius: 15px;
    border: 2px solid white;
    background-color: #f12114;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    cursor: pointer;
}

.start-quiz-button:hover,
.unaccepted-modal-button:hover {
    background: #be160a;
    color: white;
}

.quiz-answer:hover {
    background: #be160a;
    color: white;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #d1d5db;
}

.links-image {
    width: 10%;
    max-width: 35px;
    height: auto;
}

.links-image-text {
    font-size: 1rem;
    font-weight: bold;
    color: #595959;
}

.links {
    font-size: 0.9rem;
    color: inherit !important;
    text-decoration: none !important;
}

.links:hover {
    font-weight: bold;
}

.trade-names {
    font-size: 0.75rem;
    color: rgb(151, 151, 151);
    width: 95%;
    max-width: 500px;
}

.footer-page-link {
    color: rgb(49, 49, 49);
    font-weight: bold !important;
    text-decoration: none !important;
}

.footer-page-link:hover {
    color: black;
}

.footer-content {
    font-size: 0.85rem;
}

.footer {
    width: 100%;
}

.small-intro-text {
    color: rgb(145, 145, 145);
    font-size: 0.75rem;
    margin-left: 15px;
    margin-top: 20px;
}

.page-text-small {
    font-size: 0.9rem;
}

.loading-container-text-col {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.1rem;
    color: rgb(150, 150, 150);
}

.others-say {
    font-size: 1.25rem;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: roboto condensed, sans-serif
}

.comments {
    font-family: Helvetica, sans-serif;
    margin-top: 64px
}

.inner-sorting-box>span {
    font-size: .875rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px
}

.sorting-box {
    padding: 8px 0;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    height: 64px
}

.sorting-box>p {
    font-size: .875rem;
    line-height: 24px;
    font-weight: 600
}

.inner-sorting-box {
    line-height: 20px;
    font-size: 0;
    position: absolute;
    top: 8px;
    right: 0
}

.inner-sorting-box>svg {
    width: 16px;
    height: 16px;
    display: none;
    vertical-align: middle;
    margin-right: 8px;
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite
}


.sort {
    display: inline-block;
    vertical-align: middle
}

.sort>button {
    cursor: pointer;
    color: #374151;
    background: #f3f4f6;
    padding: 0 8px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #d1d5db;
    font-weight: 700
}

.sort>button:hover {
    background: #e5e7eb
}

.sort>button span {
    display: inline-block;
    vertical-align: middle;
    font-size: .75rem;
    line-height: 24px;
    font-family: Helvetica, sans-serif
}

.sort>button svg {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: auto;
    margin-left: 4px
}

.dropdown-sort {
    display: none;
    z-index: 50;
    position: absolute;
    top: 4px;
    right: 0;
    padding: 4px 0;
    background: #fff
}

.dropdown-sort button {
    font-family: Helvetica, sans-serif;
    font-size: .75rem;
    line-height: 16px;
    background: #fff;
    border: 1px solid #fff;
    border-left: 0;
    border-right: 0;
    display: block;
    width: 100%;
    text-align: left;
    padding: 4px 12px 4px 20px;
    position: relative;
    cursor: pointer
}

.dropdown-sort button svg {
    width: 9px;
    height: auto;
    display: none;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: -5px
}

.dropdown-sort button.selected {
    color: #374151;
    font-weight: 700
}

.dropdown-sort button.selected svg {
    display: block
}

.dropdown-sort button:hover {
    color: #fff;
    background: #2563eb;
    border-color: #1e40af
}

.dropdown-sort button:hover svg path {
    fill: #fff
}

.add-comment {
    position: relative;
    margin-bottom: 32px
}

.add-comment.active {
    padding: 0 0 0 58px
}

.add-comment img {
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0
}

.add-comment.active img {
    display: block
}

.add-comment textarea {
    width: 100%;
    display: block;
    border: 1px solid #d1d5db;
    min-height: 64px;
    padding: 8px 12px;
    font-family: Helvetica, sans-serif;
    font-size: 1rem
}

.add-comment textarea:focus {
    outline: 1px solid #60a5fa;
    border-color: #2563eb
}

.comment-button-box {
    font-size: 0;
    background: #f3f4f6;
    padding: 12px;
    display: none
}

.add-comment.active .comment-button-box {
    display: block
}

.comment-button-left {
    width: 65%;
    display: inline-block;
    vertical-align: top
}

.comment-button-left [type=checkbox] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    background: #fff;
    border: 1px solid #bfdbfe;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle
}

.comment-button-left [type=checkbox]:checked {
    border-color: transparent;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #6b7280;
    background-origin: border-box
}

.comment-button-left label {
    font-size: .688rem;
    color: #9ca3af;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px
}

.comment-button-left p {
    display: none;
    font-size: .688rem;
    margin-top: 4px
}

.comment-button-right {
    text-align: right;
    width: 35%;
    display: inline-block;
    vertical-align: top
}

.comment-button-right button {
    font-family: Helvetica, sans-serif;
    color: #fff;
    font-size: .875rem;
    line-height: 20px;
    font-weight: 700;
    background: #3b82f6;
    border: 1px solid #2563eb;
    padding: 4px 8px 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer
}

.comment-button-right button.disabled {
    opacity: .4;
    cursor: not-allowed
}

.main-comments {
    margin-bottom: 12px
}

.comment {
    position: relative;
    padding-left: 56px;
    margin-top: 12px;
    display: none
}

.comment:not(.start-coms):nth-child(1),
.comment:not(.start-coms):nth-child(2),
.comment:not(.start-coms):nth-child(3),
.comment:not(.start-coms):nth-child(4),
.comment:not(.start-coms):nth-child(5) {
    display: block
}

.comment:first-child {
    margin-top: 0
}

.comment-user-img {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0
}

.comment-user-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto
}

.comment-user-name {
    color: #2563eb;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 700
}

.comment-user-name span {
    display: inline-block;
    vertical-align: middle
}

.comment-user-name:hover span {
    text-decoration: underline
}

.comment-user-name svg {
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px
}

.comment-text {
    line-height: 20px
}

.comment-text a {
    color: #2563eb;
    text-decoration: none
}

.comment-text a:hover {
    text-decoration: underline
}

.comment-meta {
    font-size: 0;
    color: #9ca3af;
    margin-top: 8px;
    line-height: 16px
}



.comment-meta>* {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 4px;
    font-size: .75rem
}

.comment-meta>*:first-child {
    margin-left: 0
}

.comment-meta button {
    padding: 0;
    color: #3b82f6;
    background: 0 0;
    border: 0;
    cursor: pointer;
    font-family: Helvetica, sans-serif
}

.comment-meta button:hover {
    text-decoration: underline
}

.total-likes {
    background: url("like.png") no-repeat left center;
    background-size: 16px 16px;
    padding-left: 20px;
    line-height: 16px;
    min-height: 16px
}

.comment>.comment {
    padding-left: 52px;
    border-left: 1px dotted #d1d5db;
    display: block !important
}

.comment>.comment .comment-user-img {
    left: 8px;
    width: 36px;
    height: 36px
}

.load-more {
    background: #3b82f6;
    border: 1px solid #2563eb;
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    text-align: center;
    width: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-family: Helvetica, sans-serif;
    cursor: pointer;
    line-height: 20px;
    font-size: .875rem
}

.load-more svg {
    margin-right: 12px;
    display: none;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite
}

.load-more span {
    display: inline-block;
    vertical-align: middle
}

.load-more.end-coms svg {
    display: inline-block
}

.comments-footer {
    margin-top: 12px;
    padding: 8px 0;
    border-top: 1px solid #d1d5db
}

.comments-footer svg {
    display: inline-block;
    vertical-align: middle;
    width: 12px
}

.comments-footer a {
    text-decoration: none;
    color: #2563eb;
    font-size: .688rem
}

.comments-footer a:hover {
    text-decoration: underline
}

.fb-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px
}

@media screen and (max-width:639px) {
    .comment {
        padding-left: 44px
    }

    .comment-user-img {
        width: 36px;
        height: 36px
    }
}

.comments a {
    cursor: pointer;
    color: #2364ec !important;
}