.btn {
    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 transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}


.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}

/**
 * OAuth Connect Provider Button Set
 */

.btn-social{position:relative;padding-left:46px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:600}.btn-social>:first-child{position:absolute;left:0;top:0;bottom:0;width:36px;line-height:36px;font-size:1.2em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding:0}.btn-social-icon>:first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}
.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg>:first-child{line-height:45px;width:45px;font-size:1.8em}
.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm>:first-child{line-height:28px;width:28px;font-size:1.4em}
.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs>:first-child{line-height:20px;width:20px;font-size:1.2em}
.btn-social-icon>:first-child{border:none;text-align:center;width:100% !important}
.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}
.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}
.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}
.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:focus,.btn-facebook.focus{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:hover{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{color:#fff;background-color:#2d4373;border-color:rgba(0,0,0,0.2)}.btn-facebook:active:hover,.btn-facebook.active:hover,.open>.dropdown-toggle.btn-facebook:hover,.btn-facebook:active:focus,.btn-facebook.active:focus,.open>.dropdown-toggle.btn-facebook:focus,.btn-facebook:active.focus,.btn-facebook.active.focus,.open>.dropdown-toggle.btn-facebook.focus{color:#fff;background-color:#23345a;border-color:rgba(0,0,0,0.2)}
.btn-facebook:active,.btn-facebook.active,.open>.dropdown-toggle.btn-facebook{background-image:none}
.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled.focus,.btn-facebook[disabled].focus,fieldset[disabled] .btn-facebook.focus{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}
.btn-facebook .badge{color:#3b5998;background-color:#fff}
.btn-google{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google:focus,.btn-google.focus{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:hover{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{color:#fff;background-color:#c23321;border-color:rgba(0,0,0,0.2)}.btn-google:active:hover,.btn-google.active:hover,.open>.dropdown-toggle.btn-google:hover,.btn-google:active:focus,.btn-google.active:focus,.open>.dropdown-toggle.btn-google:focus,.btn-google:active.focus,.btn-google.active.focus,.open>.dropdown-toggle.btn-google.focus{color:#fff;background-color:#a32b1c;border-color:rgba(0,0,0,0.2)}
.btn-google:active,.btn-google.active,.open>.dropdown-toggle.btn-google{background-image:none}
.btn-google.disabled:hover,.btn-google[disabled]:hover,fieldset[disabled] .btn-google:hover,.btn-google.disabled:focus,.btn-google[disabled]:focus,fieldset[disabled] .btn-google:focus,.btn-google.disabled.focus,.btn-google[disabled].focus,fieldset[disabled] .btn-google.focus{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}
.btn-google .badge{color:#dd4b39;background-color:#fff}
.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:focus,.btn-linkedin.focus{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:hover{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{color:#fff;background-color:#005983;border-color:rgba(0,0,0,0.2)}.btn-linkedin:active:hover,.btn-linkedin.active:hover,.open>.dropdown-toggle.btn-linkedin:hover,.btn-linkedin:active:focus,.btn-linkedin.active:focus,.open>.dropdown-toggle.btn-linkedin:focus,.btn-linkedin:active.focus,.btn-linkedin.active.focus,.open>.dropdown-toggle.btn-linkedin.focus{color:#fff;background-color:#00405f;border-color:rgba(0,0,0,0.2)}
.btn-linkedin:active,.btn-linkedin.active,.open>.dropdown-toggle.btn-linkedin{background-image:none}
.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled.focus,.btn-linkedin[disabled].focus,fieldset[disabled] .btn-linkedin.focus{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}
.btn-linkedin .badge{color:#007bb6;background-color:#fff}
.btn-twitter{color:#fff;background-color:#55acee;border-color:rgba(0,0,0,0.2)}.btn-twitter:focus,.btn-twitter.focus{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:hover{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{color:#fff;background-color:#2795e9;border-color:rgba(0,0,0,0.2)}.btn-twitter:active:hover,.btn-twitter.active:hover,.open>.dropdown-toggle.btn-twitter:hover,.btn-twitter:active:focus,.btn-twitter.active:focus,.open>.dropdown-toggle.btn-twitter:focus,.btn-twitter:active.focus,.btn-twitter.active.focus,.open>.dropdown-toggle.btn-twitter.focus{color:#fff;background-color:#1583d7;border-color:rgba(0,0,0,0.2)}
.btn-twitter:active,.btn-twitter.active,.open>.dropdown-toggle.btn-twitter{background-image:none}
.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled.focus,.btn-twitter[disabled].focus,fieldset[disabled] .btn-twitter.focus{background-color:#55acee;border-color:rgba(0,0,0,0.2)}
.btn-twitter .badge{color:#55acee;background-color:#fff}

@font-face{font-display: swap;font-family:"Ionicons";src:local('Ionicons'), url("/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("/fonts/ionicons.woff?v=2.0.0") format("woff"), url("/fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"}

.ion-spin, .ion-loading-a, .ion-loading-b, .ion-loading-c, .ion-loading-d, .ion-looping, .ion-refreshing, .ion-ios7-reloading { -webkit-animation: spin 1s infinite linear; -moz-animation: spin 1s infinite linear; -o-animation: spin 1s infinite linear; animation: spin 1s infinite linear; }

@-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(359deg); } }
@-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(359deg); } }
@-o-keyframes spin { 0% { -o-transform: rotate(0deg); }
    100% { -o-transform: rotate(359deg); } }
@-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); }
    100% { -ms-transform: rotate(359deg); } }
@keyframes spin { 0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); } }
.ion-loading-a { -webkit-animation-timing-function: steps(8, start); -moz-animation-timing-function: steps(8, start); animation-timing-function: steps(8, start); }

/*
 * sweetalert js css
 */

body.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
.sweet-overlay {
    background-color: black;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10000; }

.form-group {
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    padding: 7px 10px;
    border-radius: 3px;
    line-height: 14px;
    position: relative;
    min-height: 55px;
    background-color: #FFF;
}
.form-group label {
    display:block;
    font-size: 12px;
    color: #8D9091;
}
.form-group input, .form-group select, .form-group textarea {
    border: 0;
    box-shadow: none;
    padding: 0;
    height: 36px;
    font-size: 16px;
    line-height: 1;
    color: #212020;
    margin:0;
}
.form-group select {
    height:39px;
    overflow: hidden;
    line-height: 39px;
}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.has-error .help-block {
    font-size:12px;
    display: inline;
    margin: 0;
    font-weight: 300;
    z-index:99;
    color:#a94442;
}
.form-group button.btn.dropdown-toggle {
    height: auto;
    padding: 0;
    line-height: 36px;
    border: 0;
    box-shadow: none !important;
    outline: none !important;
    background-color:#FFFFFF !important;
    color: #212120 !important;
}
.form-group .dropdown-menu, .form-group .dropdown-menu li, .form-group .dropdown-menu li a {
    outline: none !important;
}
.form-group .bootstrap-select {
    box-shadow: none !important;
}
.has-error .form-control {
    box-shadow:none !important;
}
.form-group.form-focus {
    border: 1px solid #88D0DC;
}
.form-group .bootstrap-select .bs-caret .caret {
    font-family: "Ionicons";
    border:0;
    top:4px !important;
}
.form-group .bootstrap-select .bs-caret .caret:before {
    content: "\f123";
}
.form-group .bootstrap-select.open .bs-caret .caret:before {
    content: "\f126";
}


.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    /* box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5); */
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}

.custom-select::-ms-expand {
    opacity: 0;
}

.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 75%;
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 125%;
}


.fade.show {
    opacity: 1;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.1;
    font-size: 1.1rem;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}


.equal {
    display: flex;
    flex-wrap: wrap;
}
.comment-list .comment-link {
    margin-bottom: 10px;
}
.comment-list .comment-text {
    padding-bottom: 10px;
    font-size: 14px;
}

.comments-area .comment-list .children {
    list-style: none;
    padding-left: 68px;
    padding-right:16px;
    margin: 0;
}
.comments-area .comment-list .comment {
    position: relative;
    padding: 0;
    background-color: #f9f9f9;
    margin-bottom: 16px;
    border: 2px solid #eee;
}
.comments-area .comment-list .comment .comment-body {
    border:0;
    padding:0;
    margin:0;
}
.comments-area .comment-list .comment .comment-author {
    display: block;
    padding-left: 56px;
    position: relative;
    background-color: #f2f2f2;
    height: 56px;
}
.comments-area .comment-list .comment .comment-author .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
}
.comments-area .comment-list .comment .comment-author .fn {
    display: block;
    line-height: 1;
    padding-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: #0a0a0a;
    font-weight: 600;
}
.comments-area .comment-list .comment .comment-meta {
    padding-left:0;
    font-size:13px;
    margin:0;
}
.comments-area .comment-list .comment.depth-2, .comments-area .comment-list .comment.depth-4 {
    background-color: #fff;
}
.comment-content {
    padding: 16px;
}
.comment .reply-footer-btn, .comment .reply-footer-form {
    padding:0 16px 16px 16px;
}
.reply-footer-form {
    display:none;
}
.comment-form textarea {
    min-height:60px;
    margin-bottom:0;
}
.form-group.for-hide-input {
    display:none;
    min-height:auto;
}
.form-group.has-error.for-hide-input {
    display:block;
}
.comment-content p:last-child {
    margin-bottom:0;
}


/** After Blog **/


/** Bootstrap Dialog Start **/
@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}to{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}to{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.bootstrap-dialog .modal-header{border-top-left-radius:4px;border-top-right-radius:4px}.bootstrap-dialog .bootstrap-dialog-title{color:#fff;display:inline-block;font-size:16px}.bootstrap-dialog .bootstrap-dialog-message{font-size:14px}.bootstrap-dialog .bootstrap-dialog-button-icon{margin-right:3px}.bootstrap-dialog .bootstrap-dialog-close-button{font-size:20px;float:right;opacity:.9;filter:alpha(opacity=90)}.bootstrap-dialog .bootstrap-dialog-close-button:hover{cursor:pointer;opacity:1;filter:alpha(opacity=100)}@media (min-width:1172px){.bootstrap-dialog .modal-xl{max-width:95%}}.bootstrap-dialog .modal-lg .bootstrap4-dialog-button:first-child{margin-top:8px}.bootstrap-dialog.type-default .modal-header{background-color:#fff}.bootstrap-dialog.type-default .bootstrap-dialog-title{color:#333}.bootstrap-dialog.type-info .modal-header{background-color:#17a2b8}.bootstrap-dialog.type-primary .modal-header{background-color:#007bff}.bootstrap-dialog.type-secondary .modal-header{background-color:#6c757d}.bootstrap-dialog.type-success .modal-header{background-color:#28a745}.bootstrap-dialog.type-warning .modal-header{background-color:#ffc107}.bootstrap-dialog.type-danger .modal-header{background-color:#dc3545}.bootstrap-dialog.type-light .modal-header{background-color:#f8f9fa}.bootstrap-dialog.type-dark .modal-header{background-color:#343a40}.bootstrap-dialog.size-large .bootstrap-dialog-title{font-size:24px}.bootstrap-dialog.size-large .bootstrap-dialog-close-button{font-size:30px}.bootstrap-dialog.size-large .bootstrap-dialog-message{font-size:18px}.bootstrap-dialog .icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.bootstrap-dialog-header{display:contents}
/** Bootstrap Dialog End **/

/** Custom Checkbox **/
input[type=radio], input[type=checkbox] {
    margin: 0 2px 0 0;
    border: 0;
    height: 22px;
    width: 22px;
    vertical-align: -4px;
    outline: none;
}
label.label-radio-checkbox {
    line-height: 20px;
}
input[type=radio]:before, input[type=checkbox]:before {
    font-family: "Ionicons";
    display: block;
    background: #FFF;
    height: 24px;
    width: 24px;
    font-size: 24px;
    line-height: 24px;
    margin-top: -1px;
    margin-left: -3px;
    color: #CCC;
    cursor: pointer;
    text-align: center;
}
input[type=radio]:before {
    content: "\f401";
    border-radius: 12px;
}
input[type=checkbox]:before {
    content: "\f372";
}

input[type=radio]:checked:before, input[type=checkbox]:checked:before {
    color: #2AA6C1;
}
input[type=radio]:checked:before {
    content: "\f3fe";
}
input[type=checkbox]:checked:before {
    content: "\f374";
}
/** Custom Checkbox End **/

/*
 * Alerts
 */

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}
.alert ul {
    margin-bottom: 0;
}

/**
 * Styles
 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background: white !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.page-membership {
    margin: 40px 0;
}


.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-menu {
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropright .dropdown-toggle::after {
    vertical-align: 0;
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropleft .dropdown-toggle::after {
    display: none;
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
    z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}

.dropdown-toggle-split::after {
    margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.gray-section {
    background-color: #F2F2F2;
}

.gray-section input[type=radio]:before, .gray-section input[type=checkbox]:before {
    background: #F2F2F2;
}

.membership-section {
    padding:50px 30px; border-radius: 4px;
}

.v-align-middle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

form label a {
    text-decoration: underline;
}
.margin-30 {
    margin-bottom: 30px;
}

.wp-caption .wp-caption-text {
    font-size: 16px;
    margin-top: -15px;
    padding: 8px 8px 5px 10px;
    background: #dddd;
    border-radius: 0 0 2px 2px;
    color: #444;
    font-style: italic;
    text-align: center;
}

.profile-widget-box {
    padding-bottom: 18px !important;
}

.post-interactions {
    display: flex;
    margin-top: 20px;
}

.post-interactions .id-buttons {
    display: inline-flex;
    border: 1px solid #e5e5e5;
    height: 44px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    width: 67px;
    padding: 0 12px;
}
.post-interactions .id-buttons:first-child {
    border-right: 0;
}

.id-buttons.id-like {
    color: #da5b65;
}
.id-buttons.id-collection {
    color: #e8c125;
}
.id-buttons.id-collection i.ion {
    font-size:18px;
}
.id-buttons.id-like:hover, .id-buttons.id-like.active {
    background-color: #da5b65;
    border-color: #da5b65;
}
.id-buttons.id-collection:hover, .id-buttons.id-collection.active {
    background-color: #e8c125;
    border-color: #e8c125;
}
.id-buttons span {
    padding-left: 5px;
    line-height: 16px;
    padding-top: 3px;
    display: inline-block;
    font-weight: 600;
}
.id-buttons.id-collection span {
    padding-top:4px;
}
.post-interactions .id-buttons:hover, .post-interactions .id-buttons.active {
    color:#FFF !important;
}
.single-share-id .thb-social-icons, .single-share-id .post-interactions {
    display: inline-flex;
}

.id-avatar {
    display: inline-block;
    background-position: center;
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border:2px solid #ddd;
}
.id-avatar-sm {
    width:42px;
    height:42px;
}
.form-group.form-group-auto-height {
    min-height: auto;
}

.my-connection-more-link .dropdown-toggle::after, .dot-toggle .dropdown-toggle::after {
    border:0;
    display: none;
}

.panel .pagination {
    margin:0 0 15px 0;
}

.comments-area .comments-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: default;
    margin-bottom:10px;
    border-top: 1px solid #ccc;
}
.comments-area .comments-title i.ion {
    font-size: 20px;
    vertical-align: -4px;
}
i.fa.fa-thumbsup:before {
    content: "\f164";
}
i.fa.fa-thumbsdown:before {
    content: "\f165";
}
i.fa.fa-link:before {
    content: "\f0c1";
}
.btn-thumbs {
    border: 1px solid #ddd;
    background:#f2f2f2;
}
.btn-thumbs-count {
    color:#333;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
}
.btn-thumbs-count:hover {
    background-color: #fff;
    color:#000;
}
.btn-thumbs-up{
    color:#17afa6;
    background-color: #fff;
}
.btn-thumbs-down {
    color:#d25757;
    background-color: #fff;
}
.btn-thumbs-up:hover {
    background-color:#17afa6;
    color:#fff;
}
.btn-thumbs-down:hover {
    background-color:#d25757;
    color:#fff;
}
.comment-delete-btn {
    position: absolute;
    right: 16px;
    top: 11px;
}
.comment-uc-pending {
    position: absolute;
    right: 56px;
    top: 10px;
    padding: 0 12px;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 31px;
    color: #666;
    border: 1px solid #ddd;
}
.comment-uc-pending i {
    vertical-align: -1px;
    margin-right: 4px;
}
.panel .comments-area {
    padding-left:0;
}
.comment-post-title {
    background-color: #fff;
    padding: 14px 14px 14px 60px;
    font-weight: 600;
    background-image: url(/assets/img/w_white_bg.jpg);
    background-repeat: no-repeat;
    background-size: 66px;
    border-bottom:2px solid #ddd;
}
.comment-box-only-border .comment.depth-1 {
    margin-top: 16px;
}
.panel-no-border {
    border:0;
}
.panel-no-border .collections-list-title {
    border: 2px solid #ededed;
}
.post-detail-row .thb-post-meta {
    display:block;
    text-align: center;
}
.post-detail-row .thb-post-meta span {
    display:block;
    margin-bottom:5px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border: 3px solid #ffcc00;
    border-radius: 50%;
}
.account-toggle a {
    position:relative;
    padding-right:22px;
}
.account-toggle button#accountDropdown {
    font-size: 13px;
    padding-left: 35px;
    color: #111;
    background-color: #f9f5e7;
    border-color: #ffcc00;
    box-shadow: none;
}
.account-toggle button#notificationDropdown {
    font-size: 13px;
    color: #111;
    background-color: #f6f6f6;
    border-color: #ddd;
    box-shadow: none;
}
.account-toggle span.account-avatar {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: 8px;
}
.account-toggle .dropdown-menu {
    padding:0;
}
.account-toggle .dropdown-menu a:first-child {
    padding-top:10px;
}
.account-toggle .dropdown-menu .dropdown-divider {
    margin:0;
}
.author-name {
    text-transform: capitalize;
    margin:0;
    font-weight: 600;
}
.sticky-content-side {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    border-top: 1px solid #ccc;
    padding-top: 25px;
    font-size: 14px;
    width:140px;
}
.hide-dropdown-icon .dropdown-toggle::after {
    display:none;
}
.header .secondary-area>div+div.margin-left-fix {
    margin-left:5px;
}
ul.notification-bar-list {
    width: 300px;
    list-style: none;
    margin: 0;
}
ul.notification-bar-list li {
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;
    line-height: 18px;
    font-size: 12px;
}
ul.notification-bar-list li:hover {
    background-color:#f9f9f9;
}
ul.notification-bar-list li:last-child {
    border-bottom:0;
}
ul.notification-bar-list li a {
    display:block;
    padding:0;
}
.account-toggle .dropdown-menu ul.notification-bar-list li:first-child a:first-child {
    padding-top:5px;
}
.notification-new-icon {
    display: block;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 8px;
    height: 8px;
    background-color: #ffcc00;
    border-radius: 50%;
    border: 1px solid #999;
}
.modal .row {
    padding:0;
}
.panel-profile-head {
    padding-bottom: 10px;
}

.profile-control-buttons .btn {
    font-size:13px;
    font-weight: 500;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .author-avatar {
        width: 30px;
        height: 30px;
        border-width: 2px;
        margin-right:5px;
        vertical-align: -11px;
    }
    .sticky-content-side {
        position:initial;
        top:auto;
        width: 100%;
        padding-top:15px;
    }
    .post-author .thb-post-meta {
        display:inline-block;
    }
    .thb-post-meta span {
        display:inline-block;
    }
    .thb-article-date {
        display:inline-block;
        margin-left:10px;
    }
    .v-align-middle.reset-mobile-v-align {
        position: inherit;
        top: auto;
        transform: inherit;
        display: block;
        padding:12px 0;
    }
    .text-right {
        text-align: left;
    }
    .comments-area .comment-list .children {
        padding-left:16px;
    }
    .comment-content {
        overflow: hidden;
    }
    .at-name {
        display:none;
    }
    .post-interactions, .thb-social-icons {
        margin-top:10px;
    }
    .post-detail .post-gallery {
        margin-bottom: 0;
    }
    .post-detail .post-content-container .post-author {
        margin-bottom:20px;
    }
}

ul.login-connect-providers {
    list-style: none;
    margin:0;
}
ul.login-connect-providers li {
    display: block;
    margin-bottom: 15px;
}

.widget.sponsored{background:#f8e600;color:#0a0a0a;font-size:14px;padding:15px 20px;margin:20px 0 10px;border:0;}
@media only screen and (min-width:640px){
    .widget.sponsored{margin:40px 0 20px;}
}
.widget.sponsored p{font-size:14px;line-height:18px;color:inherit;font-weight:600;margin:0;}
.widget.sponsored:after{top:100%;right:0;opacity:.4;background:#f8e600;}

.post-detail.notfound-container {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.post-detail.notfound-container .post-content-container .post-content {
    border-bottom: 0;
    padding-bottom: 0;
}
.notfound-container h6 {
    font-size: 30px;
    color: #ffcc00;
}
.notfound-container h2 {
    font-weight: 300;
}
.notfound-container p {
    font-size: 17px;
}


.progress-pie-chart{width:120px;height:120px;border-radius:50%;background-color:#dde8ef;position:relative;}
.progress-pie-chart.gt-50{background-color:#3498db;}
.ppc-progress{content:"";position:absolute;border-radius:50%;left:calc(50% - 60px);top:calc(50% - 60px);width:120px;height:120px;clip:rect(0, 120px, 120px, 60px);}
.ppc-progress .ppc-progress-fill{content:"";position:absolute;border-radius:50%;left:calc(50% - 60px);top:calc(50% - 60px);width:120px;height:120px;clip:rect(0, 60px, 120px, 0);background:#3498db;transform:rotate(60deg);}
.gt-50 .ppc-progress{clip:rect(0, 60px, 120px, 0);}
.gt-50 .ppc-progress .ppc-progress-fill{clip:rect(0, 120px, 120px, 60px);background:#dde8ef;}
.ppc-percents{content:"";position:absolute;border-radius:50%;left:calc(50% - 110px/2);top:calc(50% - 110px/2);width:110px;height:110px;background:#fff;text-align:center;display:table;}
.ppc-percents span{display:block;font-size:2.6em;font-weight:bold;color:#333;}
.pcc-percents-wrapper{display:table-cell;vertical-align:middle;}
.progress-pie-chart{margin:0 auto;}

.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%;}
.input-group>.form-control{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0; border-color: #ced4da; border-radius: 0 3px 3px 0;}
.input-group>.form-control:focus{z-index:3;}
.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0;}
.input-group-prepend{display:-webkit-box;display:-ms-flexbox;display:flex;}
.input-group-prepend{margin-right:-1px;}
.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem;}
.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0;}
.input-group-append{display:-webkit-box;display:-ms-flexbox;display:flex;}
.input-group-append .btn{position:relative;z-index:2;}
.input-group-append{margin-left:-1px;}
.input-group>.input-group-append>.btn{border-top-left-radius:0;border-bottom-left-radius:0;}

.verification-status .verification-form {
    display:block;
}
.verification-status .verification-verify {
    display:none;
}

.verification-status.verification-sent .verification-form {
    display:none;
}
.verification-status.verification-sent .verification-verify {
    display:block;
}

.profile-url-box {
    background: #e4f1f9;
    font-size: 14px;
    padding: 8px 10px 8px 24px;
    color: #24638a;
    border: 0px solid #8eafc1;
    overflow: hidden;
}

.profile-url-box i {
    font-size: 19px;
    vertical-align: middle;
    padding-right: 8px;
}
.profile-url-box a {
    color: #24638a;
    font-weight: 500;
}

.post-content img.aligncenter {
    margin: 0 auto;
    display: block;
}

.section-top-border {
    padding: 0 50px;
    margin: 0 0 30px 0;
}

.header-top-border {
    background-size: 100%;
    background-image: -webkit-gradient(linear,0 50%,100% 50%,color-stop(30%,#f86644),color-stop(100%,#f7e40d));
    background-image: -moz-linear-gradient(left,#f86644 30%,#f7e40d);
    background-image: -webkit-linear-gradient(left,#f86644 30%,#f7e40d);
    background-image: linear-gradient(to right,#f86644 30%,#f7e40d);
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    max-width: 90rem;
}

.post .post-image-max-listing img {
    max-height:200px;
}

.other-featureds-text {
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.other-featureds-text .post-title {
    min-height: 70px;
}

.other-featureds-text .post .post-title h5 {
    margin-bottom: 0;
    font-size:20px;
}

.other-featureds-text .post-title a {
    display:block;
}

.other-featureds-text .thb-post-meta {
    font-size:13px;
}

.other-featureds-text .thb-category-link {
    text-transform: uppercase;
    font-size:12px;
    font-weight: 600;
}

.footer {
    margin-top:50px;
    background: #ffffff;
}

.gbb {
    border-bottom:1px solid #CCC;
}

.post.mb-0 {
    margin-bottom: 0;
}

.thb-post-interactions {
    position: absolute;
    bottom: 5px;
    right: 0;
}

.thb-post-interactions i {
    vertical-align: text-bottom;
}

.thb-post-interactions a {
    background: #fff;
    border: 1px solid #ccc;
    padding: 0 7px;
    display: inline-block;
    border-radius: 2px;
    font-size: 14px;
}

.post-i-collection {
    color:#999;
}
.post-i-like {
    color:#333;
}
.fa-bookmark-o:before {
    content: "\f097";
}

.thb-post-interactions a.post-i-like.active {
    color: #da5b65;
}

.thb-post-interactions a.post-i-collection.active {
    color:#e8c125;
}

.thb-post-interactions a.post-i-like.active i.ion-ios-heart-outline:before {
    content: "\f443";
}

.thb-post-interactions a.post-i-collection.active i.fa-bookmark-o:before {
    content: "\f02e";
}

span.post-sponsored {
    background: #f8e600;
    padding: 4px 6px 0 6px;
    display: inline-block;
    font-size: 12px;
    margin-top: 5px;
}

.widget.blue-widget:after {
    background: #09c9f9;
}

.section-tv {
    margin-bottom:20px;
}

.post-listing .post-author-photo {
    display:none;
}

.ads-banner {
    text-align: center;
}
.related-posts .post-title {
    min-height: 100px;
}


.featured-posts-mobile .post .post-title h2 {
    font-size:18px;
}

.featured-posts-mobile .slick-arrow {
    position: absolute;
    top: 100px;
    z-index: 2;
    background: rgba(202, 202, 202, 0.5);
    padding: 6px 10px;
    font-size: 20px;
}

.featured-posts-mobile .slick-next {
    right: 0;
}
.featured-posts-mobile .slick-prev {
    left: 0;
}

ul.post-liker-list {
    list-style: none;
    display: flex;
    flex-direction: row-reverse;
    margin:10px;
}

ul.post-liker-list li {
    margin-left: -8px;
    flex: 0 0 auto;
}

ul.post-liker-list li a.post-liker {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    border:2px solid #fff;
}

.post-single-social .thb-post-interactions {
    top: 50%;
    margin-top: -12px;
    right: 15px;
}
.post-single-social .row {
    min-height:32px;
}

.post-single-social .liker-text {
    font-size: 12px;
    display: inline-block;
    line-height: 26px;
    vertical-align: 11px;
}

.post-single-social .thb-post-interactions .id-like span {
    display: none;
}

.related-posts .post {
    border-bottom: 0;
    padding-bottom: 30px;
    margin-bottom: 0;
}
.related-posts .thb-post-meta {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: left;
    font-size: 13px;
}
.related-posts .thb-post-meta .thb-post-date {
    border-bottom: 1px solid #ccc;
    margin: 0 30px 0 0;
}

.pd-top-30 {
    padding-top:30px;
}
.show-settings-profile-mobile {
    margin-bottom: 0;
}

.sidebar-banner {
    margin-bottom: 30px;
}
.dfp-banner {
    display:none;
}
.dfp-banner.dfp-loaded {
    display:block;
}
.dfp-masthead {
    margin: 0 auto;
    background: #e3e3e3;
    width: 100%;
    text-align: center;
    position: relative;
}
.dfp-masthead.dfp-loaded {
    padding: 20px;
}
.dfp-close {
    position: absolute;
    font-size: 12px;
    top: 20px;
    line-height: 0;
    background: #fff;
    padding: 4px 5px;
    color: #666;
    cursor: pointer;
}
.post.post-adrazzi {
    padding-bottom: 10px;
    position: relative;
}
.post.post-adrazzi .post-gallery {
    margin-bottom: 0;
}
.post.post-adrazzi .style-archive-content {
    height: 100%;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-bottom: 40px;
}
.post.post-adrazzi .thb-post-meta {
    position: absolute;
    bottom: 10px;
    left: 0;
}

.page-content {
    font-size:18px;
}
.page-content a:not(.tag-cloud-link):not(.button):not(.nativespot-link):not(.simplefavorite-button):not(.not-stylize){
    color:#ec3939;
    border-bottom:1px solid #ccc
}
.page-content a:not(.tag-cloud-link):not(.button):not(.nativespot-link):not(.simplefavorite-button):not(.not-stylize):hover{
    border-color:#ec3939
}

figure.aligncenter {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
}

.page .thb-author {
    margin-bottom: 40px;
}
.page .thb-author a.thb-author-avatar {
    display: block;
    margin-bottom: 10px;
}

.page .thb-author img {
    width: 100%;
}
.page .thb-author-content h5 {
    margin-bottom: 0;
}

.page .thb-author-content p {
    font-size:14px;
    margin-bottom: 5px;
}

.page .thb-author-content h5 a {
    color: #333 !important;
    text-decoration: none;
    border-bottom: 0 !important;
}

.page .thb-author .thb-author-content .thb-author-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    line-height: 28px;
    border-radius: 13px;
    background: #ededed;
    color: #0a0a0a;
    font-size: 10px;
}
.page .thb-author .thb-author-content .thb-author-social a.twitter {
    background: rgba(0,172,237,.1);
    color: #00aced;
}
.page .thb-author .thb-author-content .thb-author-social a.facebook {
    background: rgba(59,89,152,.1);
    color: #3b5998;
}
.page .thb-author .thb-author-content .thb-author-social a.linkedin {
    background: rgba(0,123,182,.1);
    color: #007bb6;
}

.ct-page {
    background: #333;
    padding: 40px 0 60px 0;
    color:#fff;
    margin-bottom:40px;
    position: relative;
}
.ct-page h1 {
    font-size: 3rem;
}

.ct-bottom {
    position:absolute;bottom: -3px;width: 100%;z-index: 10;
}
.ct-bottom-curve {
    background:#fff;height: 20px;border-radius: 4px 4px 0 0;border-bottom: 0;
}

.ct-photo {
    display: block;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.panel-profile-box, .panel-widget-box, .panel-user-box {
    background-color: #FFFFFF;
    border: 2px solid #EDEDED;
    padding:20px;
    text-align: center;
}
.account-bordered-widgets .widget {
    border: 2px solid #EDEDED;
}
.panel-user-box {
    padding:10px;
    text-align: left;
    height: 88px;
}
.panel-widget-box {
    text-align: left;
}

.col-sidebar .panel-widget-box {
    margin-bottom: 30px;
}

.ad-content {
    font-size: 16px;
}
.post.post-adrazzi-single {
    background: #f6f6f6;
    padding-bottom: 0;
    margin-top:20px;
}
.post.post-adrazzi-single .style-archive-content {
    border-bottom:0;
    padding: 15px 15px 15px 0;
}
.post.post-adrazzi-single .post-title h4 {
    font-size: 22px;
}

@media (max-width:768px) {
    .col-sidebar {
        display: none;
    }
}
@media screen and (max-width: 768px) and (min-width: 670px) {
    figure.post-gallery.post-image-max-listing img {
        max-height: 120px;
    }
    section.section-1 .post-title h5, .other-featureds-text .post-title h5 {
        font-size: 18px;
    }
}

@media (min-width:992px) {
    .col-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: -330px;
        padding-right: 345px;
    }
    .col-sidebar {
        -ms-flex: 0 0 330px;
        flex: 0 0 330px;
        max-width: 330px;
    }
}

.adrazzi-single {
    margin-top: 30px;
    background: #f6f6f6;
}

.adrazzi-single .post.archive-post .style-archive-content {
    padding: 15px 15px 0 0;
    border: 0;
}

.adrazzi-single .adrazzi-st h4 {
    font-size: 20px;
}
.adrazzi-single .adrazzi-sc {
    font-size: 16px;
}
.adrazzi-mb {
    font-size: 14px;
    position: absolute;
    bottom: 8px;
}
.adrazzi-mb a {
    color: #333 !important;
    font-weight: 600;
    border: 0 !important;
    text-transform: capitalize;
}
.adrazzi-mb span:before {
    border-left: 1px solid #999;
    height: 14px;
    display: inline-block;
    content: "";
    margin-right: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.s-post .row {
    margin: 0;
}

.pro-buy {
    background: #f6f6f6;
}

.pro-buy .header_container {
    margin-bottom:0;
}

.pad-right-zero {
    padding-right: 0;
}
.pad-left-zero {
    padding-left: 0;
}

.installment-number {
    font-size: 14px;
    line-height: 26px;
}

.pay-with-section {
    display: none;
}

.selected-pay-method-credit-card .pay-with-credit-card {
    display: block;
}

.selected-pay-method-wire-transfer .pay-with-wire-transfer {
    display: block;
}

.bank-section {
    display: none;
}

@media only screen and (max-width:576px) {
    .adrazzi-single .adrazzi-sc {
        display:none;
    }
    .adrazzi-single .adrazzi-st h4 {
        font-size:14px;
        margin-bottom:30px;
    }
    .adrazzi-single .row .col-8 {
        padding-left: 5px;
    }
    .adrazzi-single .post.archive-post .style-archive-content {
        padding:10px 10px 0 0;
    }
    .adrazzi-mb {
        font-size:12px;
        bottom:5px;
    }
    .page-membership {
        margin: 15px 0;
    }
    .membership-section {
        padding:20px;
    }
    .membership-section .flex-reverse-mobile {
        flex-direction: column-reverse;
    }
    .membership-section .v-align-middle {
        top: auto;
        transform: inherit;
    }
    .membership-section form.form-zero {
        padding:0 10px 10px;
    }
    .mobile-list-fix {
        padding:0 10px;
    }
    .ct-page {
        padding-bottom:40px;
        text-align: center;
    }
    .ct-page h1 {
        font-size: 2.2rem;
    }
    .ct-photo {
        min-height:20px !important;
        height: 100px;
    }
    .ct-bottom {
        display: none;
    }
    .section-top-border {
        padding:0;
    }
    .header-top-border {
        height:1px;
    }
    .recent-posts-title {
        display: none;
    }
    .post-listing .post-content {
        display: none;
    }
    .post-listing .thb-category-link {
        display: none;
    }
    .post-listing .post-title h4 {
        margin-bottom: 5px;
    }
    .post-listing .post-author-photo {
        display:inline-block;
    }
    .post-listing .post-author-name {
        display: none;
    }
    .post-listing .post-adrazzi .post-author-name {
        display: inherit;
    }
    .post-listing .post-adrazzi .post-author-photo {
        display: none;
    }
    .post.archive-post .post-gallery {
        margin-bottom:0;
    }
    .reset-padding-col {
        padding: 0 6px;
    }
    .post-listing .post .thb-post-meta .thb-post-author {
        margin-right:8px;
    }
    .post-listing .post .col-4 {
        padding-right: 0;
    }
    .post-listing .post-author-photo .author-avatar {
        width:22px;
        height:22px;
        border:0;
    }
    .post-listing .thb-post-date {
        vertical-align: bottom;
    }
    .post-listing .dfp-banner {
        text-align: center;
        margin-bottom: 30px;
    }
    .tv-sub-categories {
        margin-top:10px;
    }
    .widget-webrazzi-tv .category-title {
        margin-bottom:14px;
    }
    .widget-webrazzi-tv .category-title h4 {
        margin-bottom: 0;
    }
    .widget_webrazzi_kariyer ul li:nth-child(n+4) {
        display: none;
    }
    .widget.widget_webrazzi_kariyer .kariyer_viewall {
        margin-top:20px;
    }
    .post-detail-row .thb-post-meta span {
        display:inline-block;
    }
    .related-posts .post-title {
        min-height: 100px;
    }
    .related-posts {
        margin-top: 30px;
    }
    .post-single-social .thb-post-interactions {
        top: 8px;
        right: 10px;
    }
    .related-posts .col-6 {
        margin-bottom: 20px;
    }
    .panel-title {
        font-weight: 600;
    }
    .pbox-form-title {
        font-weight: 600;
    }
    .user-sidebar-pd-fix {
        padding:0;
        margin-top: -30px;
    }
    .panel-pd-fix {
        padding:0;
    }
    .edit-link-setting-icon, .profile-edit-icon {
        border:1px solid #eee;
    }
    .profile-edit-info {
        top:-10px;
    }
    .post-detail .post-content-container .post-content {
        margin-left: 0;
        padding: 0;
    }
    .archive-title {
        padding:20px 0;
    }
    .header_container {
        margin-bottom: 20px;
    }
    .archive-title h1+p {
        line-height:22px;
    }
    .archive-title p:last-child {
        margin-bottom: 0;
    }
    .header .secondary-area .header-searchform {
        top:0;
    }
    .search-fields h6 {
        margin-bottom: 5px;
    }
    .search-title .search-fields select {
        font-size: 12px;
        padding: 0 10px;
        height: auto;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .search-title h1 span {
        display: inline-block;
        font-size: 18px;
    }
    .search-title h1 form {
        display: block;
    }
    .search-title h1 form .s {
        width:100%;
        height: 46px;
    }
    .search-results .header_container {
        margin-bottom: 20px;
    }
    .footer {
        margin-top: 20px;
    }
    ul.my-notification-list li .my-notificaton-list-buttons {
        top: auto;
        bottom: 10px;
    }
    ul.my-notification-list li .my-notificaton-list-buttons .my-notification-connection-accept {
        height: 30px;
        display: inline-block;
        padding: 0 10px;
        font-size: 14px;
    }
    .post.post-adrazzi .style-archive-content {
        padding-bottom:0;
    }
    .post.post-adrazzi-single .style-archive-content {
        padding:15px;
    }
    .post.post-adrazzi .thb-post-meta {
        position: inherit;
        display: flex;
        padding-top: 10px;
    }
    .login-footer-mobile .text-left, .login-footer-mobile .text-right {
        text-align: center;
    }
    .login-footer-mobile .text-right {
        margin-top: 20px;
    }
    .login-footer-mobile .btn {
        display: block;
        width: 100%;
    }
    .register-footer-mobile .btn {
        text-align: center;
        display: block;
        width: 100%;
    }
    .dfp-close {
        display: none;
    }
    .header .secondary-area .header-searchform.active {
        width: 100%;
    }
}

.cd-read-more{
    display:none;
    background-color:#fff;
    font-size:14px;
    width: 134px;
    border: 1px solid #ddd;
    margin-top: 20px;
}
.cd-read-more ul {
    list-style: none;
    margin: 0;
}
.cd-read-more li{counter-increment:articles; text-align: center;}
.cd-read-more a{display:block;position:relative;padding:42px 10px 10px 10px;}
.cd-read-more a::before,.cd-read-more a::after{position:absolute;}
.cd-read-more a::before{content:counter(articles);top:10px;bottom:auto;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);left:50%;width:24px;height:24px;line-height:26px;font-weight:600;border-radius:50%;color:#b3b3b3;text-align:center;box-shadow:inset 0 0 0 1px #d9d9d9;-webkit-transition:background-color .3s,color .3s;-moz-transition:background-color .3s,color .3s;transition:background-color .3s,color .3s;}
.cd-read-more a::after{content:'';left:50%;right:auto;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);bottom:0;height:1px;width:100%;background-color:#d9d9d9;}
.cd-read-more a.read em{color:#a6a6a6;}
.cd-read-more a.read::before{background-color:#d9d9d9;}
.cd-read-more a.reading {
    background-color: aliceblue;
}
.cd-read-more a.reading em{color:#2a76e8;}
.cd-read-more a.reading svg{display:block;}
.cd-read-more a.reading::before{background-color:#fff;color:#2a76e8;}
.cd-read-more li:last-of-type a::after{display:none;}
.cd-read-more em{display:block;font-size:13px;font-style:normal;line-height:1.2;color:#141414;overflow:hidden;text-overflow:ellipsis;-webkit-transition:color .3s;-moz-transition:color .3s;transition:color .3s;}
.cd-read-more b{color:#a6a6a6;font-size:1.2rem;font-family:Georgia,serif;font-style:italic;}
.cd-read-more svg{display:none;position:absolute;top:9px;bottom:auto;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%);left:50%;stroke:#2a76e8;}
@media only screen and (min-width:768px){
    .cd-read-more{display:block;}
}

div#wrapper {
    visibility: visible;
    overflow: auto;
}

/**
 * Pro Pricing Styles
 */

.locked-content-warning {
    margin-bottom: 40px;
}

.post .pricing-section {
    background: #fffdfb;
    padding: 30px;
    color: #212121;
    min-height: 340px;
    text-align: center;
    border: 1px solid #f7d061;
    margin-bottom: 20px;
}
.post .pricing-section .btn.btn-yellow-insights {
    color: #000;
    border: 0;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 15px;
    background-color: #ffc107;
}
.post .pricing-section .plan-lock-icon {
    margin-bottom: 20px;
    color:#ffe2b5;
}
.post .pricing-section .plan-lock-icon i.ion {
    width:60px;
    height:60px;
    font-size:28px;
    line-height: 55px;
    text-align: center;
    border:2px solid #ffe2b5;
    border-radius: 50%;
}
.post .pricing-section h4 {
    font-size:28px;
}
.post .pricing-section .plan {
    border: 1px solid #ddd;
    padding: 20px 15px;
    font-size: 16px;
    background: #fff;
}

.post .pricing-section .plan.plan-not-valid {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    /* IE 5-7 */
    filter: alpha(opacity=70);
    /* Netscape */
    -moz-opacity: 0.7;
    /* Safari 1.x */
    -khtml-opacity: 0.7;
    /* Good browsers */
    opacity: 0.7;
}

.post .pricing-section .plan h5 {
    font-size: 24px;
    margin: 5px 0 5px 0;
}

.post .pricing-section .plan .plan-name p.muted {
    color: #666;
    font-size: 14px;
}

.pricing-section .plan .plan-name i {
    color: green;
    background: #fff;
    position: absolute;
    top: -14px;
    height: 28px;
    width: 30px;
    font-size: 12px;
    line-height: 27px;
    border: 1px solid #ccc;
    left: 50%;
    display: block;
    margin-left: -15px;
    border-radius: 50% 50% 0 0;
}

.pricing-section .plan .plan-name i.ion-close-round {
    color:#ddd;
}

.post .pricing-section .plan .plan-price {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    font-size: 14px;
    color: #666;
}

.post .pricing-section .plan .plan-price b {
    font-size: 18px;
    color: #333;
}

.post .pricing-section .plan .plan-details {
    margin-bottom: 20px;
}

.post .pricing-section .plan .plan-action a.btn.btn-subs-default {
    background: #f9f9f9;
    border: 1px solid #ccc;
    color: #333333 !important;
    font-weight: 600;
}

.post .pricing-section .plan .plan-action a.btn.btn-subs-default:hover {
    border-color:#999;
}

.post .pricing-section .plan .plan-action a.btn.btn-primary-choice {
    color: #fff !important;
    font-weight: 600;
    border: 1px solid royalblue;
}

.post .pricing-section .plan .plan-action a.btn.btn-primary-choice:hover {
    border-color:darkblue;
}

.post-reports {
    background: #f2f2f2;
}

.rp-fake {
    background: #da5b65;
    padding:0 !important;
}

.post-report-border {
    display:block;position:absolute;top:0;left:0;bottom:0;right:0;border:2px solid #fff;margin: 8px;
}

.post-report-preview {
    text-align: center;
    margin: 8px;
    padding: 10px;
}
.prp-title {
    color: white;
    font-size: 16px;
    line-height: 20px;
    margin: 20px 0 20px 0;
}
.prp-category {
    font-size: 14px;
    color: #ccc;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.prp-content {
    padding: 20px 5px;
}
.post-reports h4 {
    margin-bottom: 0;
    font-size: 22px;
    line-height:22px;
    font-weight: 600;
    color:#222;
}

.post-reports .report-category-t {
    color: #da5b65;
    font-size: 16px;
}

.post-reports .report-description-t {
    font-size: 18px;
    color: #444;
}

.post-reports .report-page-count {
    color: #424242;margin-left: 8px;border-left: 1px solid #333;padding-left: 8px;
}

.report-action {
    margin-top: 15px;
}

.report-action a {
    color: #6d5909 !important;
    border: 0 !important;
    background: #ffcc00;
    padding: 5px 20px 3px 20px;
    display: inline-block;
    font-size: 18px;
    border-radius: 4px;
    font-weight: 500;
}

.report-download-info {
    font-size:14px;
    margin-bottom: 10px;
    text-align: center;
    color: #c12271;
}
.report-download-info a {
    text-decoration: underline;
    font-weight: 600;
    color: darkblue;
}

.btn-report-action {
    background: #fff;
    border-color: #9595da;
    font-weight: 600;
    color: darkblue;
    padding: 6px 12px 3px 12px;
}

.btn-report-action i.ion {
    font-size: 22px;
    vertical-align: inherit;
    padding-right: 3px;
}

.read-more-premium {
    position: relative;
    margin-bottom: 30px;
}

.read-more-premium:after {
    content: '';
    position: absolute;
    background-image: linear-gradient(to bottom, transparent, white);
    padding-bottom: 10px;
    display: block;
    font-weight: bold;
    color: black;
    height: 80px;
    bottom: 0;
    left: 0;
    width: 100%;
}

.subs-item {
    margin-bottom: 20px;
}

.pricing-table .plan {
    border: 1px solid #d5d5d5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}
.pricing-table .plan:hover {
    border-color: #ccc #ccc #bbb;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    z-index: 10;
}
.pricing-table .plan-name {
    padding: 8px 0;
    color: #483d8b;
    background: #fff;
}
.pricing-table .plan-user-limit {
    font-weight:bold;text-align: center;background: #483d8b;color: #fff;padding: 5px;font-size: 20px;
}
.pricing-table .plan-name h2 {
    margin: 6px 0 0;
    font-weight: 400;
}
.pricing-table .plan-name h2 + p {
    margin: 0 15px 0;
}
.pricing-table .plan-price {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
    font-size:14px;
}
.pricing-table .plan-price b {
    font-size: 24px;
    font-weight: 400;
}
.pricing-table .plan-price b b {
    font-size: 16px;
    font-weight: 500;
}
.pricing-table .prefered .plan-price {
    background: #e7e2ff;
    color: #5548a2;
    font-weight: 600;
}
.pricing-table .prefered .plan-price b {
    color: #9c1ff5;
}
.pricing-table .plan-details {
    padding: 0;
    text-align: left;
}
.pricing-table .plan-details > div {
    background: #fff;
    padding: 8px 10px 6px 38px;
    font-size:14px;
    color:#000;
    position: relative;
}
.pricing-table .plan-details > div i.ion {
    position: absolute;
    top:12px;
    left:18px;
}
.pricing-table .plan-details > div.not-allowed {
    color:#888;
    text-decoration: line-through;
}
.pricing-table .plan-details > div + div {
    border-top: 1px solid #e5e5e5;
}
.pricing-table .plan-action {
    background: #fafafa;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
    border-top: 1px solid #e5e5e5;
    padding: 15px;
}
.pricing-table.row-merge .plan {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.pricing-table.row-merge [class*="span"]:first-child .plan {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}
.pricing-table.row-merge [class*="span"]:last-child .plan {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}
.pricing-table.row-merge [class*="span"] + [class*="span"] .plan {
    margin-left: -1px;
}

.pricing-table .plan-action .btn {
    padding:14px;
    font-weight: 600;
    font-size: 18px;
    border-color: #b16e09;
    background: #da9922;
    color: #ffffff;
}
.pricing-table .plan-action .btn:hover {
    background: #d1860a;
}

.btn-subs-default {
    background: #deb84d;
    border: 1px solid #a97d2c;
    border-radius: 2px;
}

.pricing-table .plan-action .btn-primary-choice {
    border-radius: 2px;
    background: #5548a2;
    border-color: #42358c;
}

.pro-main div[role='main'] {
    background: #f2f2f2;
}
.pro-main.pro-main-company div[role='main'] {
    background: url(/assets/img/insights_background.jpg) no-repeat center;
    background-size: cover;
}
.pro-main div[role='main'] .container section.section {
    margin-top: 50px !important;
    margin-bottom: 0;
    padding-bottom: 50px;
}
.pro-main.pro-main-company div[role='main'] .container section.section {
    min-height:60vh;
}
.pro-main .footer {
    margin-top: 0;
}
.pro-main .section-headlines {
    color:#222;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}
.pro-main-company .section-headlines {
    color:#222;
}
.pro-main-company .section-headlines p {
    line-height: 32px;
    font-size:24px;
}

.pro-main-company h1, h2, h3, h4 {
    margin: 0;
}

.pro-main .section-headlines p {
    line-height: 22px;
}


.bootstrap-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
}

.bootstrap-table-bordered {
    border-spacing: 1px;
    background: #ddd;
}

.bootstrap-table tr td {
    padding: 5px 10px;
    background: #fff;
    font-size:14px;
}

.bootstrap-table thead tr td {
    background: #f6f6f6;
    font-weight: 600;
    font-size: 14px;
}

.registration-details {
    padding: 22px;
    background: #f6f6f6;
    text-align: left;
}
.reg-form-agree {
    margin-bottom: 12px;
    line-height: 18px;
}

.reg-form-agree label {
    font-size:14px;
    font-weight: 300;
}

.plan.already-registered {
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    /* IE 5-7 */
    filter: alpha(opacity=50);
    /* Netscape */
    -moz-opacity: 0.5;
    /* Safari 1.x */
    -khtml-opacity: 0.5;
    /* Good browsers */
    opacity: 0.5;
}

.plan.already-registered .btn-subs-default {
    background: #fff;
    border-color:#ccc;
}

.plus-listing .style-archive-content .thb-category-link {
    display: none;
}

.plus-listing .ct-page {
    background: #525659;
}

.post .plus-post {
    display:inline-block;
    background:#525659;
    color:#fff!important;
    font-size:12px!important;
    font-weight:600;
    height:22px;
    line-height:26px;
    padding:0 10px;
    text-transform:capitalize
}

.pdmb {
    margin-bottom: 5px
}

.btn-slate-blue {
    background: darkslateblue;
    border-color: darkslateblue;
    border-radius: 3px;
    color:#fff;
}

@media (min-width: 768px) {
    .col-pass-left {
        padding-right:5px;
    }
    .col-pass-right {
        padding-left:5px;
    }
}

@media only screen and (max-width:576px) {
    .rp-fake {
        display: none;
    }

    .plan {
        margin-bottom: 30px;
    }
    .pricing-table .plan-details > div {
        font-size:12px;
    }
}

.custom-iframe .responsive-embed {
    padding: 0;
    height: auto;
}
.custom-iframe .responsive-embed iframe {
    display: block;
    width: 100%;
    position: unset;
}

#webrazziRTMwidget {
    position: fixed;
    bottom:0;
    right:25px;
    width:300px;
    z-index: 999;
}

.w-rtm {
    border: 1px solid #12498e;
    border-radius: 4px;
    background: #d1e8f3;
    margin-bottom:20px;
}

.w-rtm-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    color: #12498e;
    text-align: center;
    font-size: 12px;
    line-height: 27px;
    border: 1px solid #12498e;
    cursor: pointer;
}
.w-rtm-t {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 7px 12px 4px;
    background: #1c64e8;
    border-radius: 3px 3px 0 0;
}

.w-rtm-c a {
    font-weight: 600;
    color: #000;
    text-decoration: underline;
}
.w-rtm-c a span.post-img {
    display: block;
    height: 120px;
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center;
}

.w-rtm-c a span.post-title {
    line-height: 20px;
    font-size: 15px;
    display: block;
    padding: 10px 15px;
}

.audio-player {
    display: inline-flex;
    margin-top: 20px;
    margin-right: 7px;
    background: #f2f2f2;
}

.audio-player .ap-controller {
    display: inline-flex;border: 1px solid #e5e5e5;height: 44px;justify-content: center;align-items: center;font-size: 22px;width: 67px;padding: 0 12px;
}

.audio-player .ap-controller:hover {
    color:royalblue;
}

.audio-player .ap-duration {
    display: inline-flex;border: 1px solid #e5e5e5;height: 44px;justify-content: center;align-items: center;font-size: 15px;width: 67px;padding: 0 12px;border-left: 0;
}

.audio-player .ap-duration span {
    padding-top: 3px;
}

.audio-player .ap-hidden-player {
    display: none;
}

.audio-player .ap-ctrl-pause {
    display: none;
}

.audio-player.audio-player-playing .ap-ctrl-pause {
    display:inline-flex;
}
.audio-player.audio-player-playing .ap-ctrl-play {
    display:none;
}

.flex-row {
    display: flex;
    flex-flow: row;
    align-items: center;
}
.flex-column {
    display: flex;
    flex-flow: column;
}
.report-list {
    border-radius: 3px;
    overflow: hidden;
}
.report-list .report-card {
    min-width: 300px;
    margin-bottom: 10px;
    perspective: 300px;
    transition: all 0.1s;
    background-color: #fff;
    overflow: hidden;
    min-height: 90px;
}
.report-list .report-card.report-open {
    padding: 20px;
    height: auto;
    background-color: #f7f7f7;
}
.report-list .report-card.report-open .report-book {
    transform: rotateY(30deg);
    box-shadow: -10px 10px 10px 2px rgba(0, 0, 0, 0.2), -2px 0px 0px 0px #888;
    transition: all 0.5s;
    transition-delay: 0.05s;
}
.report-list .report-card .report-book {
    transition: all 0.5s;
    width: 70px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
}
.report-list .report-card .report-info {
    transition: all 0.2s;
    width: 230px;
    padding: 0 25px 0 15px;
    font-weight: bold;
}
.report-list .report-card .report-info .report-ftit {
    font-size: 16px;
    color: #222;
    line-height:22px;
}
.report-list .report-card .report-info .report-fcat {
    font-size: 12px;
    font-weight: normal;
    color: #888;
}
#buySteps {margin:0;overflow:hidden;counter-reset:step;width:100%;text-align:center;}
#buySteps li{list-style-type:none;color:rgb(51, 51, 51);text-transform:uppercase;font-size:10px;font-weight: 500;width:25%;float:left;position:relative;}
#buySteps li:before{content:counter(step);counter-increment:step;width:20px;line-height:18px;display:block;font-size:11px;color:#333;background:white;border-radius:3px;margin:0 auto 5px auto;padding-top: 2px;font-weight: 600;}
#buySteps li:after{content:'';width:100%;height:2px;background:white;position:absolute;left:-50%;top:9px;z-index:-1;}
#buySteps li:first-child:after{content:none;}
#buySteps li.active:before, #buySteps li.active:after{background:#2e48d6;color:white;}
.btn-blues {
    background: #fff;
    border: 1px solid #2e48d6;
    color: #2e48d6;
    font-weight: 600;
    padding: 2px 15px 0 15px;
    line-height: 34px;
}
@media (max-width:675px){
    #buySteps{display:none;}
}
@media (max-width: 1024px) {
    .selected-pay-method-credit-card .pay-with-credit-card { display: none }
}

.insights-box-widget {
    border: 1px solid #ccc;
    margin: 25px 0;
}

.ibw-title {
    background: #fff;margin-top: 0;color: #1654cc;padding: 10px 10px 6px 14px;line-height: 22px;font-size: 22px;
}

.ibw-title a {
    color: #1654cc !important;
    border: 0 !important;
}

.ibw-category {
    padding: 5px 15px 3px 15px;
    background: #f6f6f6;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000;
}

.ibw-category a {
    color: #000 !important;
    border: 0 !important;
}

.ibw-body {
    padding: 15px;
}

.ibw-item {
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    position: relative;
    min-height: 40px;
}

.ibw-item-color {
    display: block;
    width: 6px;
    height: 40px;
    position: absolute;
    background:#ccc;
}

.ibw-ic-1 {
    background: #ffa17f;
}
.ibw-ic-2 {
    background: #98bfeb;
}
.ibw-ic-3 {
    background: #8cb894;
}
.ibw-ic-4 {
    background: #ec90a6;
}
.ibw-ic-5 {
    background: #b7a9ef;
}
.ibw-ic-6 {
    background: #e8d06c;
}

a.ibw-item-title {
    display: block;
    padding-left: 18px;
    font-size: 16px;
    border: 0 !important;
    color: #111 !important;
}

.ibw-footer {
    padding: 5px 15px 3px 15px;
    background: #fff;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

.ibw-footer-left a {
    color: #20960d !important;
    border:0 !important;
}

.ibw-footer-right {
    text-align: right;
}

.ibw-footer-right a {
    color: #bd6d03 !important;
    border:0 !important;
}

.widget.purple-widget:after {
    background: #483d8b;
}

.widget-events-section {
    padding: 30px; border:1px solid #ccc; margin-bottom: 40px
}

.widget-events-subscription-title {
    font-size: 25px;
    margin: 15px 0;
    font-weight:600;
    text-align: center;
    padding-right: 15px;
    color: #c7831c;
}
.widget-events-subscription-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    padding-right: 15px;
    text-align: center;
}
.widget-events-subscription-form {
    border: 2px solid #ded7be;
    position: relative;
    overflow: hidden;
}

.widget-events-subscription-form input[type=email], .widget-events-subscription-form input[type=text] {
    border: 0;
    margin: 0 0 0 18px;
    height: 35px;
    line-height: 34px;
    padding: 0;
    width: 90%;
}
.widget-events-subscription-form button[type=submit] {
    background: #ffcc00;
    padding: 10px 20px 10px 15px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    font-weight: 600;
    height: 35px;
}

.widget-events-subscription-error, .widget-events-subscription-success, .widget-events-subscription-waiting {
    display: none;
    text-align: center;
    font-size:13px;
    margin-top:12px;
}
.widget-events-subscription-error {
    color:red;
}
.widget-events-subscription-success {
    color:green;
    font-weight: 600;
}
.widget-events-featured {
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.widget-events-featured:first-child {
    border-bottom: 1px solid #ddd;
}

.widget-events-featured:last-child {
    margin-bottom:0;
    padding-bottom: 0;
}

.widget-events-featured .wef-img {
    width: 100px;border: 1px solid #ccc;position: absolute; padding: 8px;background: #fff;
}

.widget-events-featured-body {
    padding-left: 120px;
    min-height: 83px;
}

.widget-events-featured-title a {
    padding-left: 0;
    font-size: 22px;
    padding-top: 5px;
    font-weight: 600;
    display: inline-block;
    line-height: 22px;
}

.widget-events-featured-p-title {
    font-size: 13px;
    font-weight: 300;
    margin-bottom: -4px;
    color: #444;
}

.widget-events-featured-p {
    width: 150px;
    height: 9px;
    background: #ffffff;
    border: 1px solid #111;
    border-radius: 5px;
    position: relative;
    margin-bottom: 5px;
}

.widget-events-featured-p i {
    display: block;
    height: 7px;
    background: #040300;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 6px;
}

.widget-events-featured-p i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent) );
    background-image: -moz-linear-gradient( -45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent );
    z-index: 1;
    -webkit-background-size: 20px 20px;
    -moz-background-size: 20px 20px;
    background-size: 20px 20px;
    /*
    -webkit-animation: move 3s linear infinite;
    -moz-animation: move 3s linear infinite;
    */
    overflow: hidden;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

@-moz-keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.widget-events-featured-date {
    font-size: 14px;
    font-weight: 300;
}
.btn-widget-events-featured {
    background: #65b527;
    font-size: 16px;
    color: #fff;
    display: block;
    height: 31px;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
}
.s-post blockquote {
    margin: 30px auto;
    font-style: italic;
    padding: 0 67px 0 67px;
    line-height: 1.6;
    position: relative;
}
.s-post blockquote::before {
    content: "\201C";
    color: #ec3939;
    font-size: 120px;
    position: absolute;
    left: -10px;
    top: -10px;
    display: block;
    height: 36px;
    line-height: 120px;
}
.s-post blockquote::after {
    content: "\201D";
    color: #ec3939;
    font-size: 120px;
    position: absolute;
    right: 10px;
    bottom: -10px;
    display: block;
    height: 36px;
    line-height: 120px;
}

.company-ask {
    margin: 0 60px;
}

.company-ask h1 {
    font-size:42px;
    margin:0 0 20px 0;
}
.company-ask p {
    font-size:24px;
    line-height: 24px;
}

.company-ask p.small-p {
    font-size:20px;
    line-height:18px;
}

.company-ask-results {
    max-width: 750px;margin:0 auto;text-align: center;font-size: 20px;
}

.company-ask-results p {
    line-height:24px;
}

.page .post-detail .post-content-container .post-content {
    display: block;
    float: none;
    padding: 0;
    margin: 0;
}
@media only screen and (min-width:640px) {
    .page .post-detail .post-title h1 {
        margin-top: 0;
    }
    .page .post-detail .post-content-container .post-content {
        padding: 0 20px;
    }
}

form.embed-form {
}

.form-question label.control-label {
    font-size: 15px;
    font-weight: 600;
}

.form-question .form-group {
    min-height: unset;
}

.form-question .form-group label {
    font-size: 16px;
    color: #333;
}

.form-question .form-group select {
    overflow: auto;
    font-size: 15px;
}

.form-question .form-group input[type=file] {
    height: auto;
}

.form-question .form-group.form-group-no-bg {
    border: 0;
    background: transparent;
    padding-left: 0;
}

.form-question .has-error .help-block {
    display: block;
    margin-top:10px;
}

.top-alerts .alert {
    margin: 15px 0 -5px 0;
    border-radius: 2px;
    font-weight: 500;
    padding-bottom: .65rem;
}

.top-alerts .alert.alert-success {
    background-color: #eff9f1;
}


.custom-file{position:relative;max-width: 304px;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0;}
.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0;}
.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25);}
.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef;}
.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse";}
.custom-file-label{position:absolute;top:0;right:0;left:0;overflow: hidden;line-height: 28px;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;font-weight:400;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;}
.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:2.25rem;padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Seç";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0;}
.custom-file-label{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;}


/*! CSS Used Awards */
.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
.clearfix{display:inline-block;}
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }
section.award-promote{
    text-align:center;
    overflow:hidden;
    background: url(/assets/img/award/bg1.jpg) no-repeat center top #333333;
    background-size:cover;
    min-height:320px;
    height:auto!important;
    margin-bottom:30px;
}
section.award-promote .award-content{margin:0 auto;max-width:1200px;text-align:center;}
section.award-promote .award-promote-c{margin:0 auto;margin-top:50px;overflow:hidden;}
section.award-promote .award-promote-c h2{margin:0 auto;font-size:36px;line-height:46px;color:#FFF;display:block;font-weight:600;max-width:670px;}
section.award-promote .promo-social{width:520px;margin:0 auto;margin-bottom:30px;}
.triangle-isosceles{position:relative;padding:15px 20px 0 20px;margin:1em 0 3em;color:#FFF;background:rgba(0,0,0,.3);-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;}
.triangle-isosceles.top{background:rgba(0,0,0,.3);}
.triangle-isosceles:after{content:"";position:absolute;bottom:-15px;left:50px;border-width:15px 15px 0;border-style:solid;border-color:rgba(0,0,0,.3) transparent;display:block;width:0;}
.triangle-isosceles.top:after{top:-15px;right:50%;bottom:auto;left:auto;border-width:0 15px 15px;border-color:rgba(0,0,0,.3)  transparent;}

/*! CSS Used from: Embedded */
.fb_iframe_widget{display:inline-block;position:relative;}
.fb_iframe_widget span{display:inline-block;position:relative;text-align:justify;}
.fb_iframe_widget iframe{position:absolute;}


.award-countdown, .award-countdown div {
    display: inline-block;
    line-height: 1;
    padding: 0 20px 20px;
}

.award-countdown span {
    display: block;
    font-size: 24px;
    color: white;
}

.award-countdown .ct-days {
    font-size: 70px;
    color: #db4844;
}
.award-countdown .ct-hours {
    font-size: 70px;
    color: #f07c22;
}
.award-countdown .ct-minutes {
    font-size: 70px;
    color: #f6da74;
}

.award-recent-box {
    background: url(/assets/img/award/award_oldbg.png) no-repeat center #595959;
    background-size: 60%;
    height: 180px;
    margin-bottom:25px;
    position: relative;
    display: block;
    color:#222 !important;
    padding:15px;
    text-align: center;
    border-radius: 3px;
    border:0 !important;
}

.award-recent-box span {
    display: block;
    position: absolute;
    left:50%;
    margin-left:-50px;
    width: 100px;
    text-align: center;
    font-size:26px;
    bottom:33px;
    font-weight: 600;
    height:40px;
}

.award-recent-box:hover {
    background-color: #656565;
    color:#000;
}

.award-winner-box {
    margin-bottom: 30px; border:1px solid #ddd; padding:10px;
    background: url(/assets/img/award/navactive.png) no-repeat 10px 0 #fff;
}

.no-footer-t-mg footer {
    margin-top:0;
}

.award-dark-bg div[role=main] {
    background: #727272;
}

.award-gray-bg div[role=main] {
    background: #ededed;
}

.nomination-of-candidate {
    margin-bottom: 30px;
    display: block;
}

.nomination-of-candidate h5 {
    margin-bottom: 5px;
}

.nomination-of-candidate-sidebar {
    border:1px solid #ddd;
    background: #fff;
    padding:20px;
    border-radius: 2px;
}

.nomination-of-candidate-sidebar p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.nomination-oc-content .form-group input[type=text] {
    padding: 5px 5px 0 5px;
}

.noc-completed .form-group, .nomination-oc-content .noc-completed .form-group input[type=text] {
    background: #f6f6f6;
}

.btn-award-save, .btn-award-nominate-share {
    font-size: 16px;
    line-height: 42px;
    border-radius: 2px;
    border: 0;
}

.btn-award-nominate-share {
    background: #fff;
    color:blue;
}

.award-auth {
    padding: 25px; border-radius: 3px; background-color: #ffffff;
}

.award-auth a {
    border:0 !important;
    color:#333 !important;
    text-decoration: none;
}

.award-auth a.btn-social {
    color:#fff !important;
}

.award-votes-category {
    margin-bottom: 25px;
}

.award-vote-item .award-share-btn {
    display: none;
}

.award-vote-btn {
    text-align: left;
    background: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 14px;
    box-shadow: none !important;
    border:1px solid #fff;
    color:#000;
    position: relative;
}

.award-vote-btn:focus {
    border-color:#ddd;
}

.award-category-voted {
    position: relative;
}

.award-category-voted .award-vote-item.award-voted .award-share-btn, .award-link-btn {
    display: inline-block;
    padding: 0 14px;
    background: #fff;
    line-height: 42px;
    font-size: 24px;
    border: 0 !important;
    border-radius: 4px;
    position: absolute;
    top: 6px;
    right: 21px;
    cursor: pointer;
}
.award-link-btn {
    color: #ffcc00 !important;
    background: #f3f3f3;
}
.award-category-voted .award-vote-item.award-voted .award-share-btn:focus, .award-link-btn:focus {
    outline: 1px solid #333;
}
.award-category-voted .award-vote-btn {
    background: #f3f3f3;
    color: #666;
    cursor: default !important;
}

.award-voted .award-vote-btn {
    background: #ffcc00;
    font-weight: 600;
    color:#000;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}

.award-vote-btn:before {
    display: inline-block;
    font-family: "Ionicons";
    content: "\f401";
    margin-right: 8px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.award-vote-btn.award-vote-loading {
    background: #ffcc00;
}

.award-voted .award-vote-btn:before {
    content: "\f3ff";
}

.award-category-voted .award-link-btn {
    display: none;
}
.award-link-btn i {
    vertical-align: middle;
}
.award-share-links {
    list-style: none;
    margin:0; padding:0;
}
.award-share-links li {
    display: block;
    padding:10px 15px 7px 15px;
    margin:0 0 10px 0;
    border-radius: 3px;
    color: #fff;
}
.award-share-links li a {
    color: #fff;
    display: block;
}
.award-share-links li .fa {
    width: 26px;
}

.award-voting .award-link-btn {
    display: none;
}

.award-vote-btn.award-vote-loading:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 14px;
    background: url(https://webrazzi.test/assets/img/ajax-loader.gif) no-repeat center;
    top: 11px;
    background-size: contain;
}

ul.award-social-follow {
    list-style: none;
    display: block;
}

ul.award-social-follow li {
    display: inline-block;
    height:36px;
    width:36px;
    line-height: 36px;
    text-align: center;
    margin-right: 3px;
}

ul.award-social-follow li a {
    display: block;
    border-radius: 3px;
    color:#fff;
}
ul.award-social-follow a i {
    vertical-align: middle;
}

.color-facebook {
    background: #3b5998;
}
.color-twitter {
    background: #55acee;
}
.color-linkedin {
    background: #0077b5;
}
.color-instagram {
    background: #C13584;
}

.award-gamify h5 {
    margin: 0;font-size: 18px;font-weight: 500;color: #417719;
}

.award-gamify-bar {
    background: #fff;border:1px solid #ccc;height: 16px;border-radius: 10px;padding: 2px;text-align: left;
}

.award-gamify-bar div {
    background: #4ee253;border-radius: 5px;height: 10px;
}

.light-autocomplete-list {
    position: absolute;
    left:0;
    width: 100%;
    z-index: 999;
}
.light-autocomplete-list ul {
    width: 100%;
    background-color: #f2f2f2;
    margin:0;
}
.light-autocomplete-list ul li {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 0;
}
.light-autocomplete-element {
    height: 40px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}
.light-autocomplete-element.selected {
    background-color: #f5f3e5;
    font-weight: 600;
}

.award-count-up strong {
    display: block;color: #fff;
}
.award-count-up b {
    padding: 0 15px; background: #ffcc00; border-radius: 4px; display: inline-block; height: 40px; line-height: 44px; font-size: 28px; letter-spacing: 2px; color: #111;
}

.award-sbar-banner {
    margin-top: 30px; text-align: left;
}

.counter-wrapper{float:right;position:relative;left:-50%;margin-top:20px;}
.flip-counter{position:relative;left:50%;list-style-type:none;margin-left:0;clear:both;}
.flip-counter li{float:right;}
.flip-counter.huge .digit{position:relative;z-index:0;width:42px;height:60px;margin-left:10px;background-color:#000000;text-align:center;line-height:0;-webkit-text-stroke:2px;-webkit-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.5);-moz-box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.5);box-shadow:1px 1px 5px 0px rgba(0, 0, 0, 0.5);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.flip-counter.huge .digit:last-child{margin-left:0;}
.flip-counter.huge .digit span{position:absolute;left:0;height:30px;width:42px;overflow:hidden;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;font-size:57px;font-family:'Ubuntu', sans-serif;font-weight:700;text-indent:2px;background-color:#000000;color:#ffffff;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}
.flip-counter.huge .digit span.front{top:0;padding-top:30px;}
.flip-counter.huge .digit span.back{bottom:0;}
.flip-counter.huge .digit .line{position:absolute;z-index:10;height:30px;width:42px;border-bottom:2px solid rgba(0, 0, 0, 0.7);-webkit-box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.7);-moz-box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.7);box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.7);}
.flip-counter.huge .digit .hinge-wrap{z-index:5;position:relative;overflow:visible;-webkit-perspective:800px;-moz-perspective:800px;-ms-perspective:800px;perspective:800px;}
.flip-counter.huge .digit .hinge{position:absolute;height:30px;width:42px;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:-webkit-transform 0.3s ease-in;-moz-transition:-moz-transform 0.3s ease-in;transition:transform 0.3s ease-in;-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;}
.flip-counter.huge .digit .hinge span{height:0px;z-index:5;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;}
.flip-counter.huge .digit .hinge span.front{padding-top:30px;}
.flip-counter.huge .digit .hinge span.back{height:30px;-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg);}
.flip-counter.huge .digit.animate .hinge{-webkit-transform:rotateX(-180deg);-moz-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);-o-transform:rotateX(-180deg);transform:rotateX(-180deg);}
.flip-counter.huge .digit-delimiter{padding-top:39px;margin-right:-10px;font-family:'Ubuntu', sans-serif;font-weight:700;font-size:21px;color:#000000;text-indent:6.666666666666667px;text-shadow:1px 1px 5px rgba(0, 0, 0, 0.5);}

.award-follow {
    margin-top: 30px;
}

.award-follow strong {
    display: block;
    margin-bottom: 10px;
}
.award-follow ul {
    list-style: none;
    display: block;
    margin: 0;
}
.award-follow ul li {
    display: inline;
}

.award-follow ul li a {
    display: inline-block;
    text-decoration: none;
    border: 0;
    width: 30px;
    text-align: center;
    height: 30px;
    border-radius: 50%;
    line-height: 34px;
    color: #fff;
}

.counter-wrapper.full-cw {
    background: url(/assets/img/award/bg1.jpg) center center / cover no-repeat rgb(51, 51, 51); margin-bottom: 25px; float: none; left: auto;
}
.counter-wrapper.full-cw a {
    position: absolute; left: 0; right: 0; bottom: 0; top: 0; z-index: 2;
}
.counter-wrapper.full-cw strong.rtv-title {
    color: #ffcc00; margin: 15px 0 0 30px; font-size: 24px; font-weight: 600; line-height: 28px; display: block;
}
.counter-wrapper.full-cw span.rtv-desc {
    color: #ddd;margin: 0 0 0 30px;font-size: 16px;font-weight: 600; display: block;
}
.counter-wrapper.full-cw .flip-counter {
    left: auto; display: inline-block; margin:0 auto; padding-top:18px;
    padding-right:30px;
}

.counter-wrapper.full-cw .award-bar-pos {
    text-align: right;
}
.counter-wrapper.full-cw .flip-counter.huge .digit span {
    font-size:35px;
}
.counter-wrapper.full-cw .flip-counter.huge .digit,
.counter-wrapper.full-cw .flip-counter.huge .digit span,
.counter-wrapper.full-cw .flip-counter.huge .digit .line,
.counter-wrapper.full-cw .flip-counter.huge .digit .hinge {
    height: 21px;
    width: 28px
}
.counter-wrapper.full-cw .flip-counter.huge .digit {
    height: 42px;
}
.counter-wrapper.full-cw .flip-counter.huge .digit span.front,
.counter-wrapper.full-cw .flip-counter.huge .digit .hinge span.front {
    padding-top:21px;
}
.counter-wrapper.full-cw .flip-counter.huge .digit .hinge span.back{height:21px;}
.counter-wrapper.full-cw .flip-counter.huge .digit-delimiter{padding-top:27px;font-size:15px;}

@media (max-width: 1024px) {
    section.award-promote .award-promote-c h2 {
        font-size:28px;
        line-height: 34px;
    }
    .award-recent-box span {
        font-size:20px;
        bottom: 46px;
    }
    .award-countdown .ct-days, .award-countdown .ct-hours, .award-countdown .ct-minutes {
        font-size:50px;
    }
    .ibw-item {
        margin-bottom: 15px;
    }
    .ibw-footer-right {
        text-align: left;
        margin-top: 15px;
        padding-bottom: 10px;
    }
    .widget.purple-widget .insights-box-widget {
        margin:10px 0 0;
    }
    .widget.purple-widget {
        padding:20px !important;
    }
    .widget-events-subscription-title {
        margin-top:0;
    }
    .widget-events-subscription-body {
        margin-bottom: 25px;
    }
    .widget-events-featured-body {
        padding-left:15px;
    }
    .widget-events-featured .wef-img {
        display: none;
    }
    .s-post blockquote {
        padding:0 50px 0 50px;
    }
    .s-post blockquote::before, .s-post blockquote::after {
        font-size: 100px;
    }

    .pro-main.pro-main-company div[role='main'] .container section.section {
        margin-top:20px !important;
    }

    .company-ask {
        margin: 0 20px;
        text-align: center;
    }

    .company-ask h1 {
        font-size:32px;
        line-height: 36px;
    }

    .counter-wrapper.full-cw {
        text-align: center;
        margin-top:0;
    }
    .counter-wrapper.full-cw strong.rtv-title {
        margin:20px 15px 0 15px;
    }

    .counter-wrapper.full-cw span.rtv-desc {
        margin:0 15px 17px 15px;
    }
    .counter-wrapper.full-cw .award-bar-pos {
        text-align: center;
    }
    .counter-wrapper.full-cw .flip-counter {
        margin-top:10px;
        padding-right: 0;
    }
    .counter-wrapper.full-cw .flip-counter.huge .digit span {
        font-size:26px;
    }
    .counter-wrapper.full-cw .flip-counter.huge .digit,
    .counter-wrapper.full-cw .flip-counter.huge .digit span,
    .counter-wrapper.full-cw .flip-counter.huge .digit .line,
    .counter-wrapper.full-cw .flip-counter.huge .digit .hinge {
        height: 15px;
        width: 21px
    }
    .counter-wrapper.full-cw .flip-counter.huge .digit {
        height: 30px;
    }
    .counter-wrapper.full-cw .flip-counter.huge .digit span.front,
    .counter-wrapper.full-cw .flip-counter.huge .digit .hinge span.front {
        padding-top:16px;
    }
    .counter-wrapper.full-cw .flip-counter.huge .digit .hinge span.back{height:15px;}
    .counter-wrapper.full-cw .flip-counter.huge .digit-delimiter{padding-top:19px;font-size:11px;}
}
@media (max-width: 678px) {
    .counter-wrapper.full-cw .flip-counter {
        margin-top:0;
        padding-right: 0;
    }
    .counter-wrapper.full-cw span.rtv-desc {
        margin-bottom: 0;
    }
}
