html {
    box-sizing: border-box
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

button:focus, input:focus {
    outline: none;
}

a {
    text-decoration: none;
}

.app {
    max-width: 767px;
    margin: 0 auto;
    min-height: 100vh;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
    background-color: #f5f5f5;
    position: relative;
}

.home-content, .contact-us-wrapper,
.faqs-wrapper, .blog-wrapper {
    animation: fadein .2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* header */
#top-header {
    position: fixed;
    background-color: #fff;
    top: 0;
    /* left: -50%; */
    z-index: 99;
    /* transform: translateX(-50%); */
    width: 100%;
    box-sizing: border-box;
    max-width: 767px;
    padding: 20px;
}

#top-header a {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 7px 0;
    padding-right: 6px;
    top: 4px;
}

#top-header .relative {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 7px 0;
    padding-right: 6px;
    top: 4px;
}

.back {
    width: 16px;
    height: 2px;
    background: #212121;
    display: block;
}

.back:before, .back:after {
    content: "";
    width: 10px;
    height: 2px;
    background: #212121;
    display: inline-block;
    position: absolute;
    left: -3px;
}

.back:before {
    transform: rotate(45deg);
    top: 10px;
}

.back:after {
    transform: rotate(-45deg);
    top: 4px;
}

.help-text {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #212121;
    width: 215px;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    /* left: 40px; */
}

/* langiage dropdown */
.select-language {
    position: absolute;
    top: 24px;
    right: 20px;
    padding-right: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.14;
    letter-spacing: 0.8px;
    color: #f759ab;
    text-transform: uppercase;
    z-index: 99;
    min-width: 40px;
}

.select-language:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 0;
    height: 6px;
    width: 6px;
    top: 2px;
    border-right: 1px solid #f759ab;
    border-bottom: 1px solid #f759ab;
    transform: rotate(45deg);
}

.select-language.arrow-active:after {
    border-right: transparent;
    border-bottom: transparent;
    border-top: 1px solid #f759ab;
    border-left: 1px solid #f759ab;
    top: 5px;
}

#short_code {
    display: none;
}

ul#lang_list {
    position: absolute;
    top: 44px;
    right: 20px;
    margin: 0;
    padding: 0;
    background-color: #fff;
    z-index: 99;
    border-radius: 2px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    font-size: 12px;
    letter-spacing: 0.4px;
    color: #616161;
    display: none;
}

ul#lang_list li {
    list-style-type: none;
    padding: 12px 16px;
    cursor: pointer;
    text-transform: uppercase;
}

ul#lang_list li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.page-tabs {
    position: fixed;
    max-width: 767px;
    overflow-y: hidden;
    white-space: nowrap;
    top: 56px;
    /* left: 50%; */
    z-index: 9;
    background-color: #fff;
    /* transform: translateX(-50%); */
    width: 100%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
}

.tab-item {
    display: inline-block;
    padding: 16px 28px;
    text-align: center;
    line-height: 1.14;
    color: #999999;
    text-decoration: none;
}

.tab-item.active {
    color: #333333;
}

.search {
    padding: 16px 0;
    position: relative;
    box-shadow: none;
    margin: 0 16px;
}

.search input {
    padding-left: 35px;
    height: 40px;
    width: 100%;
    font-size: 12px;
    line-height: 1.33;
    color: #616161;
    border-radius: 3px;
    border: solid 1px #e0e0e0;
    background-color: #ffffff;
    box-sizing: border-box;
}

.search:before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 12px;
    background: url("../images/search@1x.svg") center / contain no-repeat;
}

.no_results {
    font-size: 16px;
    text-align: center;
    color: #616161;
    padding: 16px;
}

#loader-holder {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    display: none;
    justify-content: center;
    align-items: center;
}

#loader-holder .load-icon {
    max-width: 85px;
    background-color: #f1f1f1;
    margin: 62px auto;
    padding: 16px;
    border-radius: 5px;
}

#loader {
    animation: loader 0.75s linear infinite;
    border: 0.25em solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    color: #f64976a1;
    display: block;
    height: 2rem;
    width: 2rem;
    margin: 0 auto;
}

@keyframes loader {
    to {
        transform: rotate(360deg);
    }
}
