* {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #4E5155;
}

*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    position: absolute;
    width: 100% !important;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
    /* background: #F7F8FB; */
    background: #F2F3F7;
    line-height: 1.5;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    border: 0;
}

::-moz-focus-inner {
    border: 0;
}

::-webkit-input-placeholder {
    color: #D8DCE6;
    font-size: 14px;
    font-weight: 300;
}

::-moz-placeholder {
    color: #D8DCE6;
    font-size: 14px;
    font-weight: 300;
}

::placeholder {
    color: #D8DCE6;
    font-size: 14px;
    font-weight: 300;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #D6DEE1;
    border-radius: 20px;
    border: 3px solid transparent;
    background-clip: content-box;
}

h1, h2, h3, h4, h5, h6 {
    position: relative;
}

p {
    color: #4E5155;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

strong {
    font-weight: 700;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:hover,
input[type=submit]:hover,
input[type=checkbox]:hover,
input[type=radio]:hover,
input[type=button]:hover,
select:hover,
a:hover {
    cursor: pointer;
}

input[type=checkbox] {
    position: relative;
    float: left;
    display: block;
    width: 18px;
    height: 18px;
    margin-left: 0;
    margin-right: 0;
    background: #FFFFFF;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
}

input[type=checkbox]:after {
    content: '';
    position: absolute;
    border: 1px solid rgba(24, 28, 33, 0.1);
    vertical-align: middle;
    text-align: center;
    line-height: 16px;
    height: 18px;
    width: 18px;
    left: 0;
    top: 0;
    font-size: 0;
    color: #FFFFFF;
    background: #FFFFFF;
    z-index: 2;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0.125rem;
}

input[type=checkbox]:checked:after {
    content: '\2714';
    font-size: 12px;
    color: #FFFFFF;
    border-color: #1073E7;
    background-color: #1073E7;
}

input[type=file] {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=file] + label {
    display: inline-block;
    margin: 0;
    padding: 5px 7px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 400;
    background: #1073E7;
    border-radius: 3px;
}

input[type=file] + label:hover {
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; margin: 0 0 20px; }

    .col-lg-12 { width: 100%; }
    .col-lg-11 { width: 91.66666667%; }
    .col-lg-10 { width: 83.33333333%; }
    .col-lg-9 { width: 75%; }
    .col-lg-8 { width: 66.66666667%; }
    .col-lg-7 { width: 58.33333333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-5 { width: 41.66666667%; }
    .col-lg-4 { width: 33.33333333%; }
    .col-lg-3 { width: 25%; }
    .col-lg-2-5 { width: 20%; }
    .col-lg-2 { width: 16.66666667%; }
    .col-lg-1 { width: 8.33333333%; }
    .col-lg-0 { display: none; }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; margin: 0 0 20px; }

    .col-md-12 { width: 100%; }
    .col-md-11 { width: 91.66666667%; }
    .col-md-10 { width: 83.33333333%; }
    .col-md-9 { width: 75%; }
    .col-md-8 { width: 66.66666667%; }
    .col-md-7 { width: 58.33333333%; }
    .col-md-6 { width: 50%; }
    .col-md-5 { width: 41.66666667%; }
    .col-md-4 { width: 33.33333333%; }
    .col-md-3 { width: 25%; }
    .col-md-2 { width: 16.66666667%; }
    .col-md-1 { width: 8.33333333%; }
    .col-md-0 { display: none; }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; margin: 0 0 20px; }

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-9 { width: 75%; }
    .col-sm-8 { width: 66.66666667%; }
    .col-sm-7 { width: 58.33333333%; }
    .col-sm-6 { width: 50%; }
    .col-sm-5 { width: 41.66666667%; }
    .col-sm-4 { width: 33.33333333%; }
    .col-sm-3 { width: 25%; }
    .col-sm-2 { width: 16.66666667%; }
    .col-sm-1 { width: 8.33333333%; }
    .col-sm-0 { display: none; }
}

@media screen and (min-width: 0px) and (max-width: 480px) {
    .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; margin: 0 0 20px; }

    .col-xs-12 { width: 100%; }
    .col-xs-11 { width: 91.66666667%; }
    .col-xs-10 { width: 83.33333333%; }
    .col-xs-9 { width: 75%; }
    .col-xs-8 { width: 66.66666667%; }
    .col-xs-7 { width: 58.33333333%; }
    .col-xs-6 { width: 50%; }
    .col-xs-5 { width: 41.66666667%; }
    .col-xs-4 { width: 33.33333333%; }
    .col-xs-3 { width: 25%; }
    .col-xs-2 { width: 16.66666667%; }
    .col-xs-1 { width: 8.33333333%; }
    .col-xs-0 { display: none; }
}

@media screen and (min-width: 0px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { float: left; margin: 0 0 20px; }

    .col-12 { width: 100%; }
    .col-11 { width: 91.66666667%; }
    .col-10 { width: 83.33333333%; }
    .col-9 { width: 75%; }
    .col-8 { width: 66.66666667%; }
    .col-7 { width: 58.33333333%; }
    .col-6 { width: 50%; }
    .col-5 { width: 41.66666667%; }
    .col-4 { width: 33.33333333%; }
    .col-3 { width: 25%; }
    .col-2 { width: 16.66666667%; }
    .col-1 { width: 8.33333333%; }
    .col-0 { display: none; }

    .col-secondary { padding-left: 20px; }
}

.wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 8px;
    max-width: 1500px;
    min-width: 300px;
}

.row {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.wrapper:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}

.content-block {
    display: none;
}

.content-block:first-of-type {
    display: block
}

.flex-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-nowrap {
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
}

.flex-align-stretch {
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flex-align-start {
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-end {
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex-align-center {
    -ms-flex-align: center;
    align-items: center;
}

.flex-justify-center {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-justify-start {
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.flex-justify-end {
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-justify-space-between {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-direction-row {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-direction-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* buttons */
.btn {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
    letter-spacing: -0.2px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.btn img {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.btn span {
    display: inline-block;
    vertical-align: middle;
}

.btn-small {
    font-size: 13px;
    font-weight: 500;
    height: 32px;
    line-height: 1;
    padding: 0 10px;
}

.btn-small img {
    width: 16px;
    height: 16px;
}

.btn-medium {
    font-size: 13px;
    font-weight: 500;
    height: 36px;
    padding: 0 10px;
}

.btn-medium img {
    width: 14px;
    height: 14px;
}

.btn-medium span {
    font-size: 13px;
    font-weight: 600;
}

.btn-large {
    font-size: 15px;
    font-weight: 500;
    height: 44px;
    padding: 0 15px;
}

.btn-large img {
    width: 16px;
    height: 16px;
}

.btn-large span {
    font-size: 15px;
    font-weight: 500;
}

.btn-wide {
    width: 100%;
}

.btn-shadow {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

.btn-round {
    border-radius: 4px !important;
}

.btn-center {
    margin: 0 auto !important;
}

.btn-primary {
    border-color: #273341;
    background-color: #273341;
    color: #FFFFFF;
}

.btn-secondary {
    border-color: #D8DCE6;
    background-color: #FFFFFF;
    color: #273341;
}

.btn-error {
    border-color: #FF6766;
    background-color: #FF6766;
    color: #FFFFFF;
}

.btn-success {
    border-color: #66A182;
    background-color: #66A182;
    color: #FFFFFF;
}

.btn-warning {
    border-color: #FFB347;
    background-color: #FFB347;
    color: #FFFFFF;
}

.btn-info {
    border-color: #71C9FF;
    background-color: #71C9FF;
    color: #FFFFFF;
}

.btn-cancel {
    color: #273341;
}

.btn-action {
    color: #4A4B4F;
}

.btn-delete {
    position: absolute;
    right: 5px;
    top: 5px;
}

/* badges */
.badge {
    display: inline-block;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
}

.badge-primary {
    background-color: #716ACA;
    color: #FFFFFF;
}

.badge-success {
    background-color: #77DD77;
    color: #FFFFFF;
}

.badge-error {
    background-color: #FF6961;
    color: #FFFFFF ;
}

.badge-warning {
    background-color: #FFB347;
    color: #FFFFFF;
}

.modal {
    position: fixed;
    display: block;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal .modal-container {
    position: relative;
    display: block;
    background: #FFFFFF;
    width: 90%;
    max-width: 850px;
    margin: 50px auto;
    padding: 0;
    border-radius: 4px;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    -webkit-box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px -5px rgba(0,0,0,0.5);
}

.modal .modal-container .modal-header {
    position: relative;
    padding: 10px 20px;
    display: block;
    background: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.modal .modal-container .modal-header span.title {
    display: block;
    margin: 0;
    padding: 0;
    color: #0F0036;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.modal .modal-container .modal-content {
    position: relative;
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #4E5155;
}

.modal .modal-container .modal-footer {
    padding: 15px 20px;
    text-align: right;
}

.modal .modal-container .modal-footer button {
    margin: 0 0 0 5px;
}

/* star rating */
.stars {
    display: block;
    min-width: 116px;
    direction: rtl;
    height: auto;
    text-align: left;
    white-space: nowrap;
}

.stars input {
    display: none;
}

.stars label {
    color: #DDDDDD;
    font-size: 24px;
    margin: 0;
    line-height: 1.5;
}

.stars label:before {
    content: '\2605';
    margin: 0;
    font-size: 24px;
    display: inline-block;
    line-height: 1.5;
}

.stars input:checked ~ label,
.stars:not(:checked) label:not(.disabled):hover,
.stars:not(:checked) label:not(.disabled):hover ~ label {
    cursor: pointer;
    color: #FA5931;
}

.stars input:checked + label:not(.disabled):hover,
.stars input:checked ~ label:not(.disabled):hover,
.stars label:not(.disabled):hover ~ input:checked ~ label,
.stars input:checked ~ label:not(.disabled):hover ~ label {
    opacity: 0.8;
}

.stars label.disabled:hover {
    cursor: default;
}

/* ratings */
.rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

.rating .reviews {
    display: inline-block;
    margin: 0 0 0 8px;
    color: #9A9A9A;
    font-size: 12px;
    line-height: 24px;
    vertical-align: middle;
}

.rating .score {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}

.rating .score:hover {
    opacity: 0.75;
    cursor: pointer;
}

.rating .score .stars {
    display: block;
    min-width: auto !important;
    direction: ltr;
    color: #DDDDDD;
    font-size: 24px;
    margin: 0;
    line-height: 1;
    text-align: left;
    vertical-align: middle;
}

.rating .score .stars:before {
    color: #DDDDDD;
}

.rating .score .stars-filled {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.rating .score .stars-filled:before {
    color: #FA5931;
}

.rating .score .stars:before,
.rating .score .stars-filled:before {
    content: "\2605 \2605 \2605 \2605 \2605";
    margin: 0;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
}

/* alert */
.alert {
    display: block;
    width: 100%;
    min-height: 30px;
    margin: 0 auto 20px;
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    border-radius: 5px;
    padding: 0 10px;
    text-align: center;
}

.alert-error {
    background: #F2DEDF;
    border: 1px solid #ECCCD1;
    color: #AC4242;
}

.alert-success {
    background: #E0EFD8;
    border: 1px solid #D7E8C6;
    color: #3A773C;
}

.alert-warning {
    background: #FDF8E4;
    border: 1px solid #FAEBCC;
    color: #A56D3A;
}

.alert-info {
    background: #D9EDF6;
    border: 1px solid #BCE8F1;
    color: #306F8E;
}

/* progress bar */
.progress-bar {
    position: relative;
    width: 100%;
    height: 20px;
    background: #F2F2F8;
    border-radius: 5px;
}

.progress-bar span {
    position: relative;
    display: block;
    height: 20px;
    border-radius: 5px;
    background: #959595;
    overflow: hidden;
}

.progress-bar span.green {
    background: #76DB98 !important;
}

.progress-bar span.light-green {
    background: #B7EA83 !important;
}

.progress-bar span.yellow {
    background: #F6D757 !important;
}

.progress-bar span.orange {
    background: #FBB851 !important;
}

.progress-bar span.red {
    background: #F17A54 !important;
}

/* breadcrumbs */
.breadcrumbs {
    display: block;
    margin: 0 0 20px;
    background: #F4F4F4;
    border-bottom: 1px solid #E5E5E5;
}

.breadcrumbs ul {
    display: block;
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.breadcrumbs ul li {
    display: inline-block;
}

.breadcrumbs ul li + li:before {
    content: '/\00a0';
    padding: 0 12px;
    color: #757575;
}

.breadcrumbs ul li a {
    color: #0172BB;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

.breadcrumbs ul li a:hover {
    color: #0172BB;
    text-decoration: underline;
}

.breadcrumbs ul li span {
    color: #353535;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

/* search engine preview */
.search-engine {
    display: block;
    width: 100%;
    max-width: 600px;
}

.search-engine span.slug {
    display: block;
    color: #202124;
    font-size: 14px;
    font-family: arial, sans-serif;
    line-height: 1.3;
    letter-spacing: .25px;
}

.search-engine span.meta_title {
    display: block;
    width: 100%;
    margin: 5px 0 3px;
    color: #1A0DAB;
    font-size: 20px;
    font-family: arial, sans-serif;
    line-height: 1.3;
    letter-spacing: .30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.search-engine span.meta_description {
    display: -webkit-box;
    color: #4D5156;
    font-size: 14px;
    font-family: arial, sans-serif;
    line-height: 1.58;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* pagination */
.pagination {
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0 20px 20px 0;
    text-align: center;
}

.pagination li {
    display: inline-block;
    padding: 0 5px;
}

.pagination li a {
    display: block;
    background: #FFFFFF;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    color: #616872;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.pagination li a:hover,
.pagination .current a {
    background: #0072BB;
    color: #FFFFFF;
}

.pagination .previous a,
.pagination .next a {
    text-transform: uppercase;
}

/* loader */
.loader {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.loader::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-top: 3px solid #0072BB;
    border-radius: 50%;
    -webkit-animation: loader .8s linear infinite;
    -moz-animation: loader .8s linear infinite;
    animation: loader .8s linear infinite;
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes loader {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes loader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-1080px);
        transform: translateX(-1080px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(-1080px);
        transform: translateX(-1080px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
