*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    font-size: 14px;
}

@-ms-viewport {
    width: device-width;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #212529;
    text-align: left;
    position: relative;
    background: #f2f4f7;
    font-size: 16px;
    font-size: 1.3em;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: 'wdth' 85;
}


/* Backgrounds
-----------------------------------------------------------------------------------------*/

.bg_white {
    background: #fff;
}

.bg_off_white {
    background: #f9fafc;
}

.bg_red {
    background: #F43F42;
}

.bg_primary {
    background: #f2f1ef;
}

.bg_light {
    background: #fdfdfe;
}

.bg_grey_light {
    background: #f9f9fb;
}

.bg_grey_dark {
    background: #333333;
}

.bg_grey_medium {
    background: #ebeeef;
}

.bg_light_yellow {
    background: #fffcdf;
}

.bg_yellow {
    background: #fad24e;
}

.bg_lighter_yellow {
    background: #fffff0;
}

.bg_blue {
    background: #005485;
}

.bg_black {
    background: #272626;
}

.bg_pink {
    background: #EACFFF;
}

.bg_orange {
    background: #fff1c0;
}

.bg_blue_purple {
    background-image: linear-gradient(90deg, rgba(0, 69, 162, 0.99) 8%, rgba(166, 68, 229, 0.7));
}


/* Text
-----------------------------------------------------------------------------------------*/

a {
    color: #000;
}

a:visited {
    color: #333;
}

.linky {
    text-decoration: none;
    cursor: pointer;
    font-weight: normal;
    color: #1d567c;
}

.linky:visited {
    text-decoration: none;
    color: #1d567c;
    cursor: pointer;
}

.linky_light {
    text-decoration: none;
    cursor: pointer;
    font-weight: normal;
    color: #97c8e8;
}

.linky_light:visited {
    text-decoration: none;
    color: #97c8e8;
    cursor: pointer;
}

.linky_w {
    text-decoration: underline;
    color: #fff;
    cursor: pointer;
}

.fontly_1 {
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: 'wdth' 75;
    font-family: "Open Sans", sans-serif;
}

.fontly_bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: 'wdth' 75;
    font-size: 36px
}

.fontly {
    font-style: normal;
    font-variation-settings: 'wdth' 75;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
}

.text_right {
    text-align: right;
}

.text_left {
    text-align: left;
}

.text_center {
    text-align: center;
}

.text_bold {
    font-weight: bold !important;
}

.text_small {
    font-size: 0.8rem
}

.text_1 {
    font-size: 1rem
}

.text_1-5 {
    font-size: 1.5rem
}

.text_2 {
    font-size: 2rem;
}

.text_3 {
    font-size: 3rem;
}

.color_grey_dark {
    color: #333333;
}

.color_grey_medium {
    color: #666;
}

.color_white {
    color: #ffffff;
}


/*  Containers and Wrappers
-----------------------------------------------------------------------------------------*/

.container {
    margin-right: auto;
    margin-left: auto;
    padding: 0 16px;
    width: 100%;
    max-width: 1152px;
}

@media (max-width: 769px) {
    .container {
        width: 94%;
    }
}

.main {
    flex: 1 1 70%;
    overflow: hidden;
}

.side {
    flex: 1 1 30%;
    padding: 0 0 0 1rem;
    overflow: hidden;
}

@media (max-width: 769px) {
    .side {
        padding: 0;
        margin: 20px 0 0 0;
    }
}

.d_none {
    display: none !important;
}

.d_block {
    display: block;
}

@media (max-width: 769px) {
    .d_m_block {
        display: block !important;
    }
}

.d_m_show {
    display: none;
}

@media (min-width: 769px) {
    .d_m_show {
        display: inline-block !important;
    }
}

@media (min-width: 769px) {
    .d_m_flex {
        display: flex !important;
    }
}

.d_m_flex_wrap {
    display: block;
}

@media (min-width: 769px) {
    .d_m_flex_wrap {
        display: flex;
        flex-wrap: wrap;
    }
}

.d_iblock {
    display: inline-block;
}

.f_left {
    float: left;
}

.v_none {
    visibility: hidden;
}

.v_block {
    visibility: visible;
}

.p_relative {
    position: relative;
}


/*  Flex
-----------------------------------------------------------------------------------------*/

.flex {
    display: flex;
}

.flex_wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex_center {
    align-items: center;
}

.flex_bottom {
    align-items: baseline;
}

.s_between {
    justify-content: space-between;
}

.s_center {
    justify-content: center;
}

.s_around {
    justify-content: space-around;
}

.flex_reverse {
    flex-direction: row-reverse;
}

.flex_split_50 {
    flex-basis: 50%;
}

.w100 {
    width: 100%;
}


/* Padding
-----------------------------------------------------------------------------------------*/

.p0 {
    padding: 0;
}

.p0-5 {
    padding: 0.5rem;
}

.p1 {
    padding: 1rem;
}

.p2 {
    padding: 2rem;
}

.p3 {
    padding: 3rem;
}

.pt0 {
    padding-top: 0rem;
}

.pt1 {
    padding-top: 1rem;
}

.pt2 {
    padding-top: 2rem;
}

.pt3 {
    padding-top: 3rem;
}

.pb0 {
    padding-bottom: 0;
}

.pb1 {
    padding-bottom: 1rem;
}

.pb2 {
    padding-bottom: 2rem;
}

.pb3 {
    padding-bottom: 3rem;
}

.pl0-5 {
    padding-left: 0.5rem;
}

.pl1 {
    padding-left: 1rem;
}

.pl2 {
    padding-left: 2rem;
}

.pl3 {
    padding-left: 3rem;
}

.pr1 {
    padding-right: 1rem;
}

.pr2 {
    padding-right: 2rem;
}

.pr3 {
    padding-right: 3rem;
}


/* Margin
-----------------------------------------------------------------------------------------*/

.m0_auto {
    margin: 0 auto;
}

.m0 {
    margin: 0;
}

.m1 {
    margin: 1rem;
}

.m2 {
    margin: 2rem;
}

.m3 {
    margin: 3rem;
}

.mt0 {
    margin-top: 0;
}

.mt1 {
    margin-top: 1rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.ml1 {
    padding-left: 1rem;
}

.ml2 {
    padding-left: 2rem;
}

.ml3 {
    padding-left: 3rem;
}

.mr1 {
    padding-right: 1rem !important;
}

.mr2 {
    padding-right: 2rem;
}

.mr3 {
    padding-right: 3rem;
}

.nospace {
    margin: 0;
    padding: 0;
}


/* Buttons or button like
-----------------------------------------------------------------------------------------*/

.button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #fcec3f;
    padding: 0.2rem 0.8rem;
    font-size: 0.9rem;
    border-radius: 0.3rem;
    cursor: pointer;
    text-decoration: none;
    background: #fcec3f;
    color: #333 !important;
}

.button:hover {
    background-color: #f4f4f4;
    color: #666 !important;
}

.button:hover a {
    background-color: #f4f4f4;
    color: #666 !important;
}

.button:visited {
    color: #fff;
}

.button_wide {
    display: block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #1c41c7;
    padding: 0.4rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.3rem;
    cursor: pointer;
    text-decoration: none;
    background: #1c41c7;
    color: #fff;
    width: 50%;
    margin: 0 auto;
}

.button_wide:visited {
    color: #fff;
}

.button_wide:hover {
    background-color: #f4f4f4;
    color: #666 !important;
}

.button_wide:hover a {
    background-color: #f4f4f4;
    color: #666 !important;
}

.button_blue {
    border: solid 1px #034383;
    color: #ffffff !important;
    background: #000;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.9rem;
    border-radius: 3px;
    padding: 8px;
    width: auto;
}

.button_blue:hover {
    border: solid 1px #444444;
    color: #fafafa !important;
    background: #444444;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 4px;
    padding: 8px;
    width: auto;
}

.button_blue:visited {
    border: solid 1px #034383;
    color: #ffffff;
    background: #034383;
}

.button_cancel {
    border: solid 1px #D71114;
    color: #fff;
    background: #D71114;
}

.button_cancel {
    border: grey;
    color: white;
    background: red;
}

.button_default {
    border: solid 1px #034383;
    color: #034383;
    background: #fafafa;
}

.button_grey {
    border: solid 1px #fff;
    color: #000 !important;
    background: #fafafa;
}

.button_blue_solid {
    border: solid 1px #034383;
    color: #ffffff;
    background: #034383;
}

.button_small {
    padding: 5px;
    font-size: 10px;
    border-radius: 0.25rem;
}

.message_bad {
    background-color: #fce8e6;
    color: #000;
    padding: 0.5rem;
    border-radius: 8px;
}

.message_bad span {
    margin: 3px;
    padding: 5px;
    background-color: #fff;
    display: inline-block;
    border-radius: 3px;
}

.message_good {
    background-color: #e0feec;
    color: #000;
    padding: 0.5rem;
    border-radius: 8px;
}

.message_good span {
    margin: 3px;
    padding: 5px;
    background-color: #fff;
    display: inline-block;
    border-radius: 3px;
}

.message_notice {
    background-color: #c8dfff;
    color: #000;
    padding: 0.5rem;
    border-radius: 8px;
}

.message_notice span {
    margin: 3px;
    padding: 5px;
    background-color: #fff;
    display: inline-block;
    border-radius: 3px;
}

.message_error {
    border: solid 1px #C00;
    border-left: solid 10px #C00;
    background-color: #fcf4f2;
    padding: 10px;
    margin: 0 0 5px 0;
    position: relative;
    cursor: pointer;
}

.message_error span {
    margin: 5px;
    padding: 5px;
    background-color: #cacaca;
    display: inline-block;
}

.message_success {
    border: solid 1px #77b259;
    border-left: solid 10px #77b259;
    background-color: #f3faef;
    padding: 10px;
    margin: 0 0 5px 0;
    position: relative;
    cursor: pointer;
}

.message_success span {
    margin: 5px;
    padding: 5px;
    display: block;
}

.error_input {
    color: red;
}

.error_input input {
    border: solid 1px red;
}

.row_status_is_deleted {
    background: #000;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_show {
    background: #17BB0F;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_paid {
    background: #17BB0F;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_hide {
    background: rgb(146, 146, 146);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_disabled {
    background: rgb(146, 146, 146);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_enabled {
    background: #17BB0F;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_alive {
    background: #17BB0F;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_working {
    background: #e20000;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_un_paid {
    background: #FFF12F;
    color: #000;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_pending_new {
    background: #FFF12F;
    color: #000;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_pending_update {
    background: #F37100;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_pending_activation {
    background: #F37100;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_not_working {
    background: #BDBDBD;
    color: #000;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_dead {
    background: #BDBDBD;
    color: #000;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_incomplete {
    background: #666;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.row_status_is_active {
    background: #03b63a;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 3px;
    padding: 3px;
}

.bread {
    border-bottom: solid 1px #f4f3f3;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.breadcrumb>li a::after {
    content: ' › ';
    color: #C7D900;
}


/* FORMS START */

.form label {
    display: block;
    width: 100%;
}

.form input[type=text],
input[type=number],
input[type=password],
input[type=email],
select,
textarea {
    border-radius: 3px;
    border: solid 1px #ccc;
    color: #585f67;
    display: block;
    width: 100%;
}

.form_item_split {
    flex-basis: 50%;
}


/* -------------------------- TABLE START ------------------------------ */

.table_outside {
    overflow-x: scroll;
    max-width: 100%;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    background-color: #fff;
    border-radius: 0.3rem;
    padding: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
}

.status_enabled {
    border-left: solid 2px #060;
}

.table thead th {
    vertical-align: bottom;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table tbody tr:nth-of-type(odd) {
    background-color: #f4edf5;
}

.table_child_row {
    padding: 1rem 0.5rem;
    margin: 0 15px 0 0;
    border-bottom: solid 1px #000;
    border-left: solid 1px #000;
    display: inline-block;
}

.myoverlay_outer {
    display: none;
    height: 100%;
    position: absolute;
}

.myoverlay {
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    padding: 1rem;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: block;
    overflow-y: auto;
}

.myoverlay_form {
    display: block;
    margin: 0px auto;
    padding: 1rem;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    max-height: 90vh;
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    overflow: auto;
}

.myoverlay_form h4 {
    padding: 10px;
    background-color: #f4f4f4;
    display: block;
}

.myoverlay_form textarea {
    height: 80px;
}

.myoverlay_form input,
textarea,
label,
select {
    width: 100%;
    margin: 0px 0 0 0;
    border-radius: 2px;
}

.bullet_blue {
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.7rem !important;
    border-radius: 4px;
    padding: 2px 8px 0 0;
    width: auto;
    color: #fff;
    text-align: center;
    margin: 1px 0px 0 0;
    border-radius: 20px;
    border: solid 1px #034383;
    background-color: #034383;
    padding: 5px 10px;
    text-decoration: none !important;
}

.bullet_blue a {
    color: #fff;
}

.bullet_blue:visited {
    color: #fff;
    text-decoration: none !important;
}

.gradient_border_bluish {
    height: 10px;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    background-image: linear-gradient(to left, #00b6cc, #0066cc);
}

.gradient_border_ylwish {
    height: 10px;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    background-image: linear-gradient(to left, rgb(233, 255, 107), rgb(233, 255, 107));
}

.border_tag {
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.7rem !important;
    border-radius: 30px;
    padding: 8px;
    width: auto;
    color: #453c55;
    text-align: center;
    margin: 1px 0px 0 0;
}

.border_tag_right {
    left: auto;
    right: 1rem;
    top: -12px;
    position: absolute;
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;
    font-size: 0.7rem !important;
    line-height: 1rem;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: auto;
}

.border_tag_blue {
    background: #ffda92;
    color: #333;
    border: solid 1px #ffda92;
}

.border_tag_blue a {
    color: #ffffff;
    text-decoration: none;
}

.border_tag_red {
    background-image: linear-gradient(to right, rgba(255, 183, 43, 1), rgba(255, 56, 44, 1));
    color: #ffffff;
}

.border_tag_red a {
    color: #ffffff;
    text-decoration: none;
}

.border_tag_purple {
    border: solid 1px rgba(166, 0, 181, 1);
    background: #fff;
    color: #000;
}

@font-face {
    font-family: 'captainicon';
    src: url('/assets/fonts/captainicon.eot?-1i2a56');
    src: url('/assets/fonts/captainicon.eot?#iefix-1i2a56') format('embedded-opentype'), url('/assets/fonts/captainicon.woff?-1i2a56') format('woff'), url('/assets/fonts/captainicon.ttf?-1i2a56') format('truetype'), url('/assets/fonts/captainicon.svg?-1i2a56#captainicon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    font-family: 'captainicon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-001:before {
    content: "\e600";
}

.icon-047:before {
    content: "\e62e";
}

.icon-122:before {
    content: "\e679";
}

.icon-320:before {
    content: "\e73f";
}

.icon-163:before {
    content: "\e6a2";
}

.icon-353:before {
    content: "\e760";
}

.icon-288:before {
    content: "\e71f";
}

.icon-289:before {
    content: "\e720";
}

.clear {
    clear: both;
    float: none;
    display: block;
}

.bootstrap-tagsinput {}

.bootstrap-tagsinput .badge [data-role="remove"] {
    margin-left: 8px;
    cursor: pointer;
}

.bootstrap-tagsinput .badge {
    margin: 2px 2px 0px 0;
    color: #333;
    background-color: #f5f5f5;
    padding: 3px 4px;
    border-radius: 3px;
    border: 1px solid #e8e8e8;
    display: inline-block;
    font-size: 0.8rem;
}

.bootstrap-tagsinput .badge [data-role="remove"]::after {
    content: "×";
    padding: 0px 4px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 13px;
}

.sr-only {
    display: none !important;
}


/* -----------------------------------------
Searching for images 
--------------------------------------------*/

.search_image_media {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.search_image_media_results {
    width: 150px;
    font-size: 0.9rem;
    position: relative;
    border: solid 1px #CCC;
    padding: 10px;
    margin: 10px
}

.search_image_media_results img {
    width: 100%;
}

.search_image_media_results p {
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.search_image_media_results button {
    font-size: 0.7rem;
}

.search_image_media_results input {
    width: 100%;
}

.search_image_media_results_delete {
    position: absolute;
    top: 80px;
    right: 10px;
    border: 100%;
    padding: 2px 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: red;
    font-size: 10px;
    font-weight: bold;
    text-shadow: #fff 1px 1px 1px;
}


/* -----------------------------------------
Browsing images 
--------------------------------------------*/

.media_img_browse {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 3rem;
}

.media_img_browse_results {
    width: 150px;
    font-size: 0.9rem;
    position: relative;
    border: solid 1px #CCC;
    padding: 10px;
    margin: 10px
}

.media_img_browse_results img {
    width: 100%;
}

.media_img_browse_results p {
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.media_img_browse_results button {
    font-size: 0.7rem;
}

.media_img_browse_results input {
    width: 100%;
}

.media_img_browse_results_delete {
    position: absolute;
    top: 80px;
    right: 10px;
    border: 100%;
    padding: 2px 5px;
    background-color: rgba(255, 255, 255, 0.8);
    color: red;
    font-size: 10px;
    font-weight: bold;
    text-shadow: #fff 1px 1px 1px;
}


/* -----------------------------------------
Form image search 
--------------------------------------------*/

.imagereturn {
    display: flex;
    flex-wrap: wrap;
}

.image_search_preview {
    margin: 5px;
    text-align: center;
    position: relative;
    background: #fff;
    padding: 5px;
    border: solid 1px #333;
}

.image_search_preview img {
    max-width: 150px;
    max-height: 150px;
}

.image_search_preview button {
    display: block;
    margin: 0 0 3px 0;
    width: 100%;
    cursor: pointer;
    text-transform: capitalize;
}


/* -----------------------------------------
Form image selected 
--------------------------------------------*/

.form_image_selected {
    flex-grow: 1;
    display: flex;
}

.form_image_selected input {
    display: none !important;
}

.form_image_selected_pages {
    flex-wrap: wrap;
    border: solid 1px #ccc;
    margin: 10px;
    padding: 10px;
}

.form_image_selected_head {
    flex-wrap: wrap;
    border: solid 1px #ccc;
    margin: 10px;
    padding: 10px;
}

.form_image_selected_preview {
    flex-wrap: wrap;
    border: solid 1px #ccc;
    margin: 10px;
    padding: 10px;
}

.gallery_inputs {
    display: flex;
    flex-wrap: wrap;
}

.gallery_inputs img {
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}

.gallery_inputs label {
    width: 50px;
}

.gallery_inputs input {
    display: none;
}

.head_inputs {
    display: flex;
    flex-wrap: wrap;
}

.head_inputs img {
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}

.head_inputs label {
    width: 50px;
}

.head_inputs input {
    display: none;
}

.preview_input {
    display: flex;
    flex-wrap: wrap;
}

.preview_input img {
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}

.preview_input label {
    width: 150px;
}

.preview_input input {
    display: none;
}


/* -----------------------------------------
pagination 
--------------------------------------------*/

.pagination {
    clear: both;
    float: none;
    font-size: 1.1rem;
}

.pagination p {
    margin: 0;
    padding: 0;
}

.pagination a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #1d263e;
    border-radius: 3px;
    color: #fff;
    margin: 0 1px;
    text-decoration: none;
}

.pagination strong {
    background-color: #ffda92;
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #333;
    margin: 0;
}

.whatsapp_float a {
    position: fixed;
    bottom: 0;
    right: 0;
    border-radius: 50%;
}

.foot_menu a {
    display: block;
    text-align: left;
    color: #fff;
    border-bottom: solid 1px #30936b;
    min-width: 200px;
    padding: 5px 0;
}

.foot_menu a i {
    color: #ff963d;
}

.hidden_menu {
    display: none;
}

.hidden_menu div {
    display: flex;
    min-width: 100%;
    margin-top: 10px;
    overflow-x: auto;
}

.hidden_menu div a {
    padding: 8px 15px;
    text-decoration: none;
}

.hidden_menu a {
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
}


/* -----------------------------------------
Options pages 
--------------------------------------------*/

.options {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.options a {
    display: block;
    text-decoration: none;
    padding: 1rem;
    background-color: #fff;
    margin: 1rem 0;
}

.options2 {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.options2 div {
    display: block;
    text-decoration: none;
    padding: 1rem;
    background-color: #fff;
    margin: 1rem 0;
}

.options2 small {
    display: block;
}

.options2 div a {
    display: block;
    text-decoration: none;
    padding: 5px;
    background-color: #f4f4f4;
    margin: 2px;
}

.landing_more {
    text-align: center;
    padding: 1rem;
}

.landing_more a {
    background-color: #fff;
    padding: 1rem;
    font-size: 1.3rem;
}

.preview_sections_each {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0px 0 0px 0;
    background: #fff;
}

.preview_sections_each>div {
    text-align: center;
    font-size: 0.8rem;
    margin: 0 0px 0 0;
    flex-grow: 1;
}

.preview_sections_each>div b {
    color: #333;
    display: block;
    padding: 0 5px;
    font-weight: 100;
}