/*------------- #BLOCKS --------------*/
/*------------- #VARIABLES --------------*/
/*------------- #HEADING --------------*/
.crumina-heading {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
}

.crumina-heading > *:last-child {
    margin-bottom: 0;
}

.crumina-heading > *:first-child {
    margin-top: 0;
}

.crumina-heading + * {
    margin-top: 25px;
}

.heading-title {
    margin-bottom: 30px;
    line-height: 1.3em;
}

.heading-text {
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.75;
}

.heading-text.small {
    font-size: 14px;
}

.heading-sup-title {
    opacity: .7;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 16px;
}

/*================= Responsive Mode ============*/
@media (max-width: 980px) {
    .heading-text {
        font-size: 20px;
    }
}

@media (max-width: 570px) {
    .heading-text {
        font-size: 16px;
    }
}

/*------------- #styled_selects --------------*/
.variations select {
  background-image: url(../images/angle.svg);
  background-repeat: no-repeat;
  background-position: 97%;
  background-size: 30px 30px;
}
.nice-select {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 20px 40px 20px 20px;
    border-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 50px;
    position: relative;
    background-color: #dbe3ec;
    color: #ccc;
}

.nice-select:focus {
    background-color: #fff;
    -webkit-box-shadow: 17px 0 60px #d3dcdc;
    box-shadow: 17px 0 60px #d3dcdc;
}

.nice-select.focus-white:focus {
    background-color: #fff;
    -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
}

.nice-select:after {
    border-bottom: 2px solid #ccc;
    border-right: 2px solid #ccc;
    content: '';
    display: block;
    height: 10px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select .list {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #dbe3ec;
    -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-40px/2);
    transform: scale(0.75) translateY(-40px/2);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    margin-left: 0;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 38px;
    list-style: none;
    min-height: 38px;
    outline: none;
    padding-left: 40px;
    padding-right: 60px;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    margin: 0;
    font-size: 16px;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #dbe3ec;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    cursor: default;
}

.nice-select .option.disabled:hover {
    color: #4b5d73;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

/*------------- #FORMS --------------*/
input:not([type="checkbox"]), textarea, select, .nice-select {
  padding: 13px 40px;
  border: 1px solid transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 16px;
  margin-bottom: 20px;
  border-radius: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
          box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
  width: 100%;
  outline: none; }
  input:focus, textarea:focus, select:focus, .nice-select:focus {
    -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
}

::-webkit-input-placeholder {
    color: #839dbc;
}

::-moz-placeholder {
    color: #839dbc;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #839dbc;
}

/* Firefox 18- */
:-ms-input-placeholder {
    color: #839dbc;
}

textarea {
    min-height: 200px;
    border-radius: 30px;
}

.with-icon {
    position: relative;
}

.with-icon input, .with-icon textarea, .with-icon select {
    padding-left: 70px;
}

.with-icon .utouch-icon {
    position: absolute;
    left: 20px;
    top: 18px;
    height: 16px;
    fill: #6987ab;
    border-right: 1px solid #dbe3ec;
    padding-right: 17px;
    z-index: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.with-icon.icon-right input, .with-icon.icon-right textarea, .with-icon.icon-right select {
    padding-left: 40px;
    padding-right: 70px;
}

.with-icon.icon-right .utouch-icon {
    left: auto;
    right: 20px;
    padding-right: 0;
    border-right: none;
}

.form-inline {
    position: relative;
}

.form-inline input {
    padding: 17px 200px 16px 40px;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15) !important;
    box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15) !important;
    -webkit-appearance: none;
}

.form-inline .btn {
    position: absolute;
    right: 5px;
    top: 5px;
}

.mc4wp-custom-subscribe-form .mc4wp-response {
    margin-top: 15px;
}

.mc4wp-custom-subscribe-form .mc4wp-response .mc4wp-success {
    color: #006600;
}

.mc4wp-custom-subscribe-form .mc4wp-response .mc4wp-error {
    color: #FF0000;
}

.items-with-border input, .items-with-border textarea, .items-with-border select, .items-with-border .nice-select {
    border: 2px solid #d9e4ef;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.items-with-border input:focus, .items-with-border textarea:focus, .items-with-border select:focus, .items-with-border .nice-select:focus {
    -webkit-box-shadow: 5px 0 30px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 5px 0 30px 0 rgba(18, 25, 33, 0.1);
    border-color: transparent;
}

.contact-form .btn {
    margin-top: 5px;
}

.post-password-form.form-inline {
    margin-top: 20px;
}

.post-password-form.form-inline input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #dbe3ec;
}

.logged-in-as > *:last-child {
    float: right;
    color: #ff3133;
}

.form-builder-item {
    margin-bottom: 20px;
}

.form-builder-item [type="checkbox"], .form-builder-item [type="radio"] {
    width: auto;
}

.form-builder-item label {
    margin-bottom: 10px;
    font-weight: 700;
    color: #273f5b;
    display: inline-block;
}

.form-builder-item label sup {
    color: red;
    font-weight: 700;
    border: 0;
}

.form-builder-item input[type="text"],
.form-builder-item textarea {
    line-height: 1.5;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #dbe3ec;
}

.form-builder-item input[type="text"]:focus,
.form-builder-item textarea:focus {
    border-color: transparent;
    -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
}

.form-builder-item .custom-radio label,
.form-builder-item .custom-checkbox label {
    padding-left: 10px;
}

.form-builder-item .field-columns-0 .options {
    display: inline-block;
}

.form-builder-item .field-columns-0 .options + .options {
    margin-left: 15px;
}

.form-builder-item .field-columns-2 .field-column {
    width: 50%;
    display: inline-block;
}

.form-builder-item .field-columns-3 .field-column {
    width: 33.33%;
    display: inline-block;
}

.form-builder-item .field-columns-4 .field-column {
    width: 25%;
    display: inline-block;
}

.checkbox {
    position: relative;
}

.checkbox input[type=checkbox] {
    display: none;
}

.checkbox label {
    padding-left: 30px;
    color: #516e90;
}

.checkbox label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    left: 0;
    bottom: 5px;
    border-radius: 3px;
    border: none;
}

.checkbox input[type=checkbox]:checked + label:before {
    content: "\2714";
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 14px;
}

/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .form-inline .btn {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
    }

    .form-inline input {
        padding-right: 40px;
    }

    .logged-in-as > :last-child {
        float: none;
    }
}

/*------------- #ALERTS --------------*/
.alert {
    border-radius: 30px;
    -webkit-box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
    box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
    border: none;
    margin: 15px 0;
    font-size: 16px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: bold;
}

.alert-dismissible .close {
    position: relative;
    top: -0.75rem;
    right: -1.25rem;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-success {
    background-color: #3cb878;
}

.alert-success hr {
    border-top-color: #b3f3b4;
}

.alert-success .alert-link {
    color: #b3f3b4;
}

.alert-info hr {
    border-top-color: #b7fff2;
}

.alert-info .alert-link {
    color: #b7fff2;
}

.alert-warning {
    background-color: #fcb03b;
}

.alert-warning hr {
    border-top-color: #ffe4b4;
}

.alert-warning .alert-link {
    color: #ffe4b4;
}

.alert-danger {
    background-color: #ff3133;
}

.alert-danger hr {
    border-top-color: #ffbcba;
}

.alert-danger .alert-link {
    color: #ffbcba;
}

/*------------- #BUTTONS --------------*/
.btn {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 18px 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    fill: #fff;
    font-weight: 900;
    border-radius: 50px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
    line-height: 1;
}

.btn + .btn {
    margin-left: 30px;
}

input.btn:focus {
    color: #fff;
}

.crum-button + .crum-button {
    margin-left: 30px;
}

.btn--with-icon {
    text-align: left;
    fill: #fff;
    padding: 12px 50px;
}

.btn--with-icon > * {
    display: inline-block;
    vertical-align: middle;
}

.btn--with-icon .utouch-icon {
    margin-right: 14px;
    font-size: 26px;
    height: 26px;
    width: 26px;
}

.btn--with-icon .text {
    overflow: hidden;
}

.btn--with-icon .sup-title {
    font-size: 10px;
    opacity: .7;
}

.btn--with-icon .title {
    font-size: 16px;
}

.btn-small {
    padding: 12px 24px;
    font-size: 12px;
}

.btn-x-small {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-x-small .utouch-icon {
    height: 20px;
    width: 20px;
}

.btn--large {
    padding: 23px 50px;
}

.btn-more {
    margin: 40px auto;
    text-align: center;
}

.btn-border {
    border: 2px solid;
    background-color: transparent;
}

.btn-border.btn {
    padding: 16px 50px;
}

.btn-border.btn-small {
    padding: 12px 26px;
}

.btn-border.btn--large {
    padding: 21px 50px;
}

.btn--icon-right .utouch-icon {
    float: right;
    margin-right: 0;
    margin-left: 14px;
    font-size: 26px;
    height: 26px;
}

.btn--icon-right .text {
    overflow: hidden;
    margin-top: 7px;
    display: block;
}

.btn--round {
    border-radius: 100%;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 42px;
    fill: #fff;
    position: relative;
}

.btn--round .utouch-icon {
    height: 13px;
    width: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*------------- #Color-scheme for buttons --------------*/
div:hover > .btn-reverse-bg-green {
    background-color: #61b131;
    color: #fff;
}

div:hover > .btn-reverse-bg-green .utouch-icon {
    fill: #fff;
}

.c-white {
    color: #fff;
}

.c-black {
    color: #121921;
}

.c-gray {
    color: #738CAA;
    fill: #738CAA;
}

.c-green {
    color: #01a23c;
    fill: #01a23c;
}

.c-orange {
    color: #EF6517;
    fill: #EF6517;
}

.c-orange-light {
    color: #F89101;
    fill: #F89101;
}

.c-red {
    color: #ff3133;
    fill: #ff3133;
}

.c-yellow {
    color: #FECF39;
    fill: #FECF39;
}

.c-lime {
    color: #9FC31A;
    fill: #9FC31A;
}

.c-breez {
    color: #00ffff;
}

.c-lime-light {
    color: #00ff00;
    fill: #00ff00;
}

.c-peach {
    color: #f4b3a9;
    fill: #f4b3a9;
}

.c-semitransparent-white {
    color: rgba(255, 255, 255, 0.5);
}

.bg-blue {
    background-color: #0082d7;
}

.bg-rose {
    background-color: #e81d51;
}

.bg-violet {
    background-color: #bb26f0;
}

.bg-black {
    background-color: #121921;
}

.bg-yellow {
    background-color: #FECF39;
}

.bg-blue-light {
    background-color: #98d5ff;
}

.bg-blue-lighteen {
    background-color: #ecf5fe;
}

.bg-orange {
    background-color: #EF6517;
}

.bg-orange-light {
    background-color: #F89101;
}

.bg-red {
    background-color: #ff3133;
}

.bg-green {
    background-color: #01a23c;
}

.bg-pamaranch {
    background-color: #f18d01;
}

.btn--with-shadow:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
}

.btn--with-shadow:hover:after {
    opacity: 1;
}

.btn--transparent, .btn.btn--transparent {
    background-color: transparent;
    color: #6987ab;
    fill: #6987ab;
}

.btn--transparent.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(47, 44, 44, 0.1);
    box-shadow: 5px 0 15px 0 rgba(47, 44, 44, 0.1);
}

.btn--white, .btn.btn--white {
    background-color: #fff;
    color: #222;
    fill: #222;
}

.btn--white.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 5px 0 15px 0 rgba(255, 255, 255, 0.3);
}

.btn--white.btn-border {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    fill: #fff;
}

.btn--dark, .btn.btn--dark {
    background-color: #2c3c4f;
}

.btn--dark.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(47, 44, 44, 0.3);
    box-shadow: 5px 0 15px 0 rgba(47, 44, 44, 0.3);
}

.btn--dark.btn-border {
    background-color: transparent;
    color: #2c3c4f;
    border-color: #2c3c4f;
    fill: #2c3c4f;
}

.btn--blue, .btn.btn--blue {
    background-color: #00adef;
}

.btn--blue.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(0, 191, 243, 0.3);
    box-shadow: 5px 0 15px 0 rgba(0, 191, 243, 0.3);
}

.btn--blue.btn-border {
    background-color: transparent;
    color: #00adef;
    border-color: #00adef;
    fill: #00adef;
}

.btn--purple, .btn.btn--purple {
    background-color: #6739b6;
}

.btn--purple.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(118, 67, 207, 0.3);
    box-shadow: 5px 0 15px 0 rgba(118, 67, 207, 0.3);
}

.btn--purple.btn-border {
    background-color: transparent;
    color: #6739b6;
    fill: #6739b6;
}

.btn--breez, .btn.btn--breez {
    background-color: #00ffff;
}

.btn--breez.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(85, 213, 211, 0.3);
    box-shadow: 5px 0 15px 0 rgba(85, 213, 211, 0.3);
}

.btn--breez.btn-border {
    background-color: transparent;
    color: #00ffff;
    fill: #00ffff;
    border-color: #00ffff;
}

.btn--dark-gray, .btn.btn--dark-gray {
    background-color: #31364c;
}

.btn--dark-gray.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(74, 81, 110, 0.3);
    box-shadow: 5px 0 15px 0 rgba(74, 81, 110, 0.3);
}

.btn--dark-gray.btn-border {
    background-color: transparent;
    color: #31364c;
    fill: #31364c;
    border-color: #31364c;
}

.btn--brown, .btn.btn--brown {
    background-color: #c69c6c;
}

.btn--brown.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(228, 180, 124, 0.3);
    box-shadow: 5px 0 15px 0 rgba(228, 180, 124, 0.3);
}

.btn--brown.btn-border {
    background-color: transparent;
    color: #c69c6c;
    fill: #c69c6c;
    border-color: #c69c6c;
}

.btn--rose, .btn.btn--rose {
    background-color: #e91d62;
}

.btn--rose.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(255, 82, 141, 0.3);
    box-shadow: 5px 0 15px 0 rgba(255, 82, 141, 0.3);
}

.btn--rose.btn-border {
    background-color: transparent;
    color: #e91d62;
    fill: #e91d62;
    border-color: #e91d62;
}

.btn--violet, .btn.btn--violet {
    background-color: #605ca9;
}

.btn--violet.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(138, 134, 213, 0.3);
    box-shadow: 5px 0 15px 0 rgba(138, 134, 213, 0.3);
}

.btn--violet.btn-border {
    background-color: transparent;
    color: #605ca9;
    fill: #605ca9;
    border-color: #605ca9;
}

.btn--olive, .btn.btn--olive {
    background-color: #3e4d50;
}

.btn--olive.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(87, 107, 111, 0.3);
    box-shadow: 5px 0 15px 0 rgba(87, 107, 111, 0.3);
}

.btn--olive.btn-border {
    background-color: transparent;
    color: #3e4d50;
    fill: #3e4d50;
    border-color: #3e4d50;
}

.btn--light-green, .btn.btn--light-green {
    background-color: #80be2d;
}

.btn--light-green.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(143, 213, 50, 0.3);
    box-shadow: 5px 0 15px 0 rgba(143, 213, 50, 0.3);
}

.btn--light-green.btn-border {
    background-color: transparent;
    color: #80be2d;
    fill: #80be2d;
    border-color: #80be2d;
}

.btn--dark-blue, .btn.btn--dark-blue {
    background-color: #2e3192;
}

.btn--dark-blue.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(68, 72, 195, 0.3);
    box-shadow: 5px 0 15px 0 rgba(68, 72, 195, 0.3);
}

.btn--dark-blue.btn-border {
    background-color: transparent;
    color: #2e3192;
    fill: #2e3192;
    border-color: #2e3192;
}

.ajax-paginate-link.loading {
    position: relative;
}

.ajax-paginate-link.loading .load-more-text {
    visibility: hidden;
}

.ajax-paginate-link.loading .load-more-spinner {
    visibility: visible;
}

.ajax-paginate-link .load-more-spinner {
    margin: -15px 0 0 -15px;
    visibility: hidden;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
}

.btn--primary.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(0, 131, 255, 0.3);
    box-shadow: 5px 0 15px 0 rgba(0, 131, 255, 0.3);
}

.btn--primary.btn-border {
    background-color: transparent;
    color: #0083ff;
    fill: #0083ff;
    border-color: #0083ff;
}

.btn--secondary.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(39, 63, 91, 0.3);
    box-shadow: 5px 0 15px 0 rgba(39, 63, 91, 0.3);
}

.btn--secondary.btn-border {
    background-color: transparent;
    color: #6987ab;
    fill: #6987ab;
    border-color: #6987ab;
}

.btn--green, .btn.btn--green {
    background-color: #01a23c;
}

.btn--green.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(1, 162, 60, 0.3);
    box-shadow: 5px 0 15px 0 rgba(1, 162, 60, 0.3);
}

.btn--green.btn-border {
    background-color: transparent;
    color: #01a23c;
    fill: #01a23c;
    border-color: #01a23c;
}

.btn--black, .btn.btn--black {
    background-color: #121921;
}

.btn--black.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(18, 25, 33, 0.3);
    box-shadow: 5px 0 15px 0 rgba(18, 25, 33, 0.3);
}

.btn--black.btn-border {
    background-color: transparent;
    color: #121921;
    fill: #121921;
    border-color: #121921;
}

.btn--orange, .btn.btn--orange {
    background-color: #EF6517;
}

.btn--orange.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(239, 101, 23, 0.3);
    box-shadow: 5px 0 15px 0 rgba(239, 101, 23, 0.3);
}

.btn--orange.btn-border {
    background-color: transparent;
    color: #EF6517;
    fill: #EF6517;
    border-color: #EF6517;
}

.btn--orange-light {
    background-color: #F89101;
}

.btn--orange-light.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(248, 145, 1, 0.3);
    box-shadow: 5px 0 15px 0 rgba(248, 145, 1, 0.3);
}

.btn--orange-light.btn-border {
    background-color: transparent;
    color: #F89101;
    fill: #F89101;
    border-color: #F89101;
}

.btn--red, .btn.btn--red {
    background-color: #ff3133;
}

.btn--red.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(255, 49, 51, 0.3);
    box-shadow: 5px 0 15px 0 rgba(255, 49, 51, 0.3);
}

.btn--red.btn-border {
    background-color: transparent;
    color: #ff3133;
    fill: #ff3133;
    border-color: #ff3133;
}

.btn--grey, .btn.btn--grey {
    background-color: #738CAA;
}

.btn--grey.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(115, 140, 170, 0.3);
    box-shadow: 5px 0 15px 0 rgba(115, 140, 170, 0.3);
}

.btn--grey.btn-border {
    background-color: transparent;
    color: #738CAA;
    fill: #738CAA;
    border-color: #738CAA;
}

.btn--grey-light, .btn.btn--grey-light {
    background-color: #ecf4fc;
    color: #6987ab;
}

.btn--grey-light .utouch-icon {
    fill: #6987ab;
}

.btn--grey-light.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(236, 244, 252, 0.3);
    box-shadow: 5px 0 15px 0 rgba(236, 244, 252, 0.3);
}

.btn--grey-light.btn-border {
    background-color: transparent;
    color: #6987ab;
    fill: #6987ab;
    border-color: #6987ab;
}

.btn--yellow, .btn.btn--yellow {
    background-color: #FECF39;
}

.btn--yellow.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(254, 207, 57, 0.3);
    box-shadow: 5px 0 15px 0 rgba(254, 207, 57, 0.3);
}

.btn--yellow.btn-border {
    background-color: transparent;
    color: #FECF39;
    fill: #FECF39;
    border-color: #FECF39;
}

.btn--lime, .btn.btn--lime {
    background-color: #9FC31A;
}

.btn--lime.btn--with-shadow:after {
    -webkit-box-shadow: 5px 0 15px 0 rgba(159, 195, 26, 0.3);
    box-shadow: 5px 0 15px 0 rgba(159, 195, 26, 0.3);
}

.btn--lime.btn-border {
    background-color: transparent;
    color: #9FC31A;
    fill: #9FC31A;
    border-color: #9FC31A;
}

.btn-market {
    background-color: #121921;
    text-transform: none;
    text-align: left;
    fill: #fff;
    padding: 13px 26px;
}

.btn-market .utouch-icon {
    margin-right: 5px;
    height: 26px;
    width: 26px;
}

.btn-market > * {
    display: inline-block;
    vertical-align: middle;
}

.btn-market .text {
    overflow: hidden;
}

.btn-market span {
    display: block;
}

.btn-market .sup-title {
    font-size: 10px;
    opacity: .7;
}

.btn-market .title {
    font-size: 16px;
}

.btn-market:after {
    -webkit-box-shadow: 10px 0 15px 0 rgba(18, 25, 33, 0.3);
    box-shadow: 10px 0 15px 0 rgba(18, 25, 33, 0.3);
}

.btn--green-light {
    background-color: #61b131;
}

/*------------- #Button back-to-top --------------*/
.back-to-top {
    position: absolute;
    z-index: 20;
    width: 60px;
    height: 60px;
    line-height: 77px;
    display: block;
    fill: #fff;
    stroke: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    top: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    cursor: pointer;
    -webkit-box-shadow: 10px 0 30px 0 rgba(0, 130, 215, 0.4);
    box-shadow: 10px 0 30px 0 rgba(0, 130, 215, 0.4);
    border-radius: 100%;
    text-align: center;
}

.back-to-top.hidden {
    opacity: 0;
}

.back-to-top .utouch-icon {
    fill: #fff;
    height: 28px;
    width: 28px;
}

.back-to-top-fixed {
    position: fixed;
    z-index: 999;
    margin-left: -30px;
    bottom: 60px;
    top: auto;
    -webkit-transform: none;
    transform: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 1024px) {
    .btn + .btn {
        margin-left: 0;
        margin-top: 15px;
    }

    .crum-button + .crum-button {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 15px 35px;
        font-size: 13px;
    }

    .btn--with-icon {
        padding: 10px 35px;
    }

    .btn--round {
        padding: 0;
    }

    .btn-small {
        padding: 14px 25px;
    }
}

@media (max-width: 460px) {
    .btn {
        font-size: 10px;
    }
}

/*------------- #SLIDERS --------------*/
.main-slider {
    position: relative;
    cursor: pointer;
    background-color: #ecf5fe;
}

.main-slider .swiper-slide {
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-slider .slider-content {
    margin: 0 auto 65px;
}

@media (max-width: 980px) {
    .main-slider .slider-content {
        padding: 20px 5px;
    }
}

.main-slider .slider-content .slider-content-title {
    margin-bottom: 10px;
    line-height: 1.3;
}

.main-slider .slider-content .slider-content-text {
    margin-bottom: 25px;
    line-height: 1.45;
    font-weight: 400;
}

.main-slider .slider-content.align-both .slider-content-title {
    margin-bottom: 23px;
    line-height: 1.2;
}

.main-slider .slider-content.align-both .slider-content-text {
    margin-bottom: 33px;
    line-height: 1.55;
}

.main-slider .main-slider-bg-dark .slider-content .slider-content-title {
    color: #fff;
}

.main-slider .main-slider-bg-dark .slider-content .slider-content-text {
    color: #fff;
    opacity: 1;
}

.main-slider .main-slider-bg-dark .with-decoration .first-decoration, .main-slider .main-slider-bg-dark .with-decoration .second-decoration {
    fill: #fff;
}

.main-slider.navigation-center-both-sides .btn-prev {
    left: 0;
}

.main-slider.navigation-center-both-sides .btn-next {
    right: 0;
}

.main-slider .slider-thumb {
    overflow: hidden;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .main-slider .slider-thumb {
        height: auto;
        overflow: visible;
    }
}

.main-slider .main-slider-btn-wrap .btn + .btn {
    margin-left: 20px;
}

@media (max-width: 980px) {
    .main-slider .main-slider-btn-wrap .btn + .btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 320px) {
    .main-slider .main-slider-btn-wrap .btn + .btn {
        margin-top: 20px;
    }
}

.main-slider.main-slider-bg-dark .slider-content .slider-content-title {
    color: #fff;
}

.main-slider.main-slider-bg-dark .slider-content .slider-content-text {
    color: #fff;
}

.main-slider.main-slider-bg-dark .with-decoration .first-decoration, .main-slider.main-slider-bg-dark .with-decoration .second-decoration {
    fill: #fff;
}

.main-slider .thumb-left {
    direction: rtl;
}

.main-slider .thumb-left .slider-content {
    direction: ltr;
}

.main-slider .thumb-right {
    direction: ltr;
}

.main-slider.main-slider-bg-photo-wrap {
    height: 100vh;
}

.main-slider.no-labels {
    padding-bottom: 0;
}

.with-decoration {
    position: relative;
    padding: 0 40px;
}

.with-decoration .first-decoration,
.with-decoration .second-decoration {
    display: block;
    position: absolute;
    top: 50%;
    width: 65px;
    max-height: 100%;
    fill: inherit;
}

.with-decoration .first-decoration {
    left: 0;
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
}

.with-decoration .second-decoration {
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.main-slider-bg-light .with-decoration .first-decoration, .main-slider-bg-light .with-decoration .second-decoration {
    fill: #516e90;
}

.background-contain {
    background-size: contain;
    background-repeat: no-repeat;
}

.background-cover {
    background-size: cover;
}

.bg-1 {
    background-image: url("../img/clouds1.png");
}

.bg-2 {
    background-image: url("../img/clouds2.png");
}

.bg-3 {
    background-image: url("../img/clouds3.png");
}

.bg-4 {
    background-image: url("../img/clouds4.png");
}

.bg-5 {
    background-image: url("../img/clouds5.png");
}

.bg-6 {
    background-image: url("../img/clouds6.png");
}

.bg-7 {
    background-image: url("../img/clouds7.png");
}

.bg-8 {
    background-image: url("../img/clouds11.png");
}

.bg-9 {
    background-image: url("../img/clouds13.png");
}

.bg-10 {
    background-image: url("../img/clouds14.png");
}

.bg-11 {
    background-image: url("../img/clouds15.png");
}

.bg-12 {
    background-image: url("../img/clouds16.png");
}

.bg-13 {
    background-image: url("../img/clouds17.png");
}

.bg-14 {
    background-image: url("../img/clouds18.png");
}

.bg-15 {
    background-image: url("../img/clouds19.png");
}

.bg-16 {
    background-image: url("../img/clouds20.png");
}

.bg-17 {
    background-image: url("../img/clouds21.png");
}

.bg-18 {
    background-image: url("../img/clouds22.png");
}

.bg-19 {
    background-image: url("../img/clouds24.png");
}

.bg-20 {
    background-image: url("../img/clouds25.png");
}

.bg-rounded1 {
    background-image: url("../img/bg-rounded1.png");
}

.bg-rounded2 {
    background-image: url("../img/bg-rounded2.png");
}

.bg-rounded3 {
    background-image: url("../img/bg-rounded3.png");
}

.bg-rounded4 {
    background-image: url("../img/bg-rounded4.png");
}

/*------------- #Slider Faqs --------------*/
.slider-faqs-thumb {
    position: relative;
    text-align: center;
    background-image: url("../img/faqs-cloud.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.slider-faqs-thumb .utouch-icon {
    height: 240px;
    width: 240px;
}

.slider-faqs-title {
    text-transform: uppercase;
    margin-bottom: 35px;
    letter-spacing: .2em;
}

.slider-slides {
    margin-bottom: 75px;
    z-index: 999;
    padding: 10px 0;
}

.slides-item {
    display: inline-block;
    position: relative;
    margin-right: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    opacity: .3;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 100%;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slides-item.slide-active {
    opacity: 1;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 131, 255, 0.2);
    box-shadow: 0 0 15px 0 rgba(0, 131, 255, 0.2);
}

.slides-item:last-child {
    margin-right: 0;
}

.with-thumbs {
    text-align: center;
    margin: 40px 0;
}

.with-thumbs .slides-item {
    margin-right: 10px;
    line-height: 1;
    overflow: hidden;
    background-color: transparent;
}

.slider-slides--vertical-line .slides-item {
    opacity: 1;
    background-color: transparent;
    font-size: 18px;
    color: #849dbd;
}

.slider-slides--vertical-line .slides-item:first-child {
    margin-left: 40px;
}

.slider-slides--vertical-line .slides-item.slide-active {
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 20px;
}

.slider-slides--vertical-line .slides-item.slide-active .round:before {
    opacity: 1;
    height: 60px;
}

.slider-slides--vertical-line .slides-item.slide-active .round.orange {
    background-color: #F89101;
}

.slider-slides--vertical-line .slides-item.slide-active .round.red {
    background-color: #ff3133;
}

.slider-slides--vertical-line .round {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #a1b7d2;
    margin-right: 15px;
    position: relative;
}

.slider-slides--vertical-line .round:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 0 0 5px 5px;
    top: -70px;
    left: 1px;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-left: 4px solid;
}

.slider-slides--vertical-line .round.orange:before {
    background-color: #F89101;
}

.slider-slides--vertical-line .round.red:before {
    background-color: #ff3133;
}

.cloud-center {
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.play-with-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.play-with-title .video-control {
    margin-right: 15px;
}

.video-control {
    padding: 15px;
}

.video-control img {
    -webkit-box-shadow: 10px 0 30px 0 rgba(215, 20, 58, 0.4);
    box-shadow: 10px 0 30px 0 rgba(215, 20, 58, 0.4);
    border-radius: 20px;
}

.play-title {
    font-size: 20px;
}

.btn-slider-wrap {
    display: inline-block;
    z-index: 99;
}

.navigation-bottom {
    padding-bottom: 70px;
}

.navigation-left-bottom {
    position: absolute;
    left: 13%;
    bottom: 20px;
}

.navigation-center-bottom {
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.navigation-top-right {
    position: absolute;
    right: 3%;
    top: 0;
}

.navigation-top .swiper-container {
    padding-top: 70px;
    top: -70px;
    z-index: 5;
}

.navigation-center-both-sides .btn-prev, .navigation-center-both-sides .btn-next {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
}

.navigation-center-both-sides .btn-prev {
    left: -60px;
}

.navigation-center-both-sides .btn-next {
    right: -60px;
}

.kc-row-container .navigation-center-both-sides.crumina-module-image-slider .btn-prev {
    left: 60px;
}

.kc-row-container .navigation-center-both-sides.crumina-module-image-slider .btn-next {
    right: 60px;
}

.kc-row-container.kc-container .navigation-center-both-sides.crumina-module-image-slider .btn-prev {
    left: -60px;
}

.kc-row-container.kc-container .navigation-center-both-sides.crumina-module-image-slider .btn-next {
    right: -60px;
}

.navigation-top-both-sides .btn-prev, .navigation-top-both-sides .btn-next {
    top: 0;
    position: absolute;
}

.navigation-top-both-sides .btn-prev {
    left: 10%;
}

.navigation-top-both-sides .btn-next {
    right: 10%;
}

.btn-prev, .btn-next {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    stroke: inherit;
    opacity: .4;
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.btn-prev:after, .btn-next:after {
    content: '';
    display: block;
    height: 100%;
    width: 15px;
    position: absolute;
    top: 0;
}

.btn-prev .utouch-icon, .btn-next .utouch-icon {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 36px;
    height: 36px;
}

.btn-prev .icon-hover, .btn-next .icon-hover {
    opacity: 0;
    position: absolute;
}

.btn-prev:hover, .btn-next:hover {
    opacity: 1;
}

.btn-prev:hover .icon-hover, .btn-next:hover .icon-hover {
    opacity: 1;
}

.btn-prev .icon-hover {
    left: 0;
}

.btn-next .icon-hover {
    right: 0;
}

.btn-next:hover {
    margin-left: 5px;
    margin-right: -5px;
}

.btn-prev:hover {
    margin-left: -5px;
    margin-right: 5px;
}

.btn-prev.with-bg, .btn-next.with-bg {
    opacity: .4;
}

.btn-prev.with-bg .utouch-icon, .btn-next.with-bg .utouch-icon {
    fill: #fff;
}

.btn-prev.with-bg.rounded, .btn-next.with-bg.rounded {
    border-radius: 30px;
}

.btn-prev.with-bg.round, .btn-next.with-bg.round {
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 100%;
}

.btn-prev.with-bg.round .utouch-icon, .btn-next.with-bg.round .utouch-icon {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.btn-prev.with-bg.bg-black, .btn-next.with-bg.bg-black {
    background-color: #121921;
}

.btn-prev.with-bg {
    border-radius: 0 30px 30px 0;
    padding: 7px 0 0 15px;
}

.btn-prev.with-bg .icon-hover {
    left: 16px;
}

.btn-prev.with-bg:hover {
    margin-left: 0;
    margin-right: 0;
    padding: 7px 15px 0 15px;
    opacity: 1;
}

.btn-prev.with-bg.rounded:hover {
    padding: 7px 20px 0 15px;
}

.btn-next.with-bg {
    border-radius: 30px 0 0 30px;
    padding: 7px 15px 0 0;
}

.btn-next.with-bg .icon-hover {
    right: 16px;
}

.btn-next.with-bg:hover {
    margin-left: 0;
    margin-right: 0;
    padding: 7px 15px 0 15px;
    opacity: 1;
}

.btn-next.with-bg.rounded:hover {
    padding: 7px 15px 0 20px;
}

.btn-next:after {
    left: -15px;
}

.btn-prev:after {
    right: -15px;
}

.btn-prev.btn--style,
.btn-next.btn--style {
    padding: 7px 40px;
    border-radius: 30px;
    background-color: #ecf5fe;
    opacity: 1;
    text-transform: uppercase;
    color: #6987ab;
    font-weight: 700;
}

.btn-prev.btn--style span,
.btn-next.btn--style span {
    display: inline-block;
    vertical-align: middle;
}

.btn-prev.btn--style .utouch-icon,
.btn-next.btn--style .utouch-icon {
    fill: #6987ab;
    display: inline-block;
    vertical-align: middle;
}

.btn-prev.btn--style .icon-hover,
.btn-next.btn--style .icon-hover {
    right: auto;
    left: auto;
}

.btn-prev.btn--style:hover,
.btn-next.btn--style:hover {
    background-color: #fff;
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
}

.crumina-module-slider {
    position: relative;
}

.crumina-module-slider .list, .crumina-module-slider .crumina-module-list {
    margin-left: 0;
}

.crumina-module-slider .list ul, .crumina-module-slider .crumina-module-list ul {
    margin-left: 30px;
}

.crumina-module-slider .heading-text ul {
    list-style: initial;
    margin-left: 20px;
}

.crumina-module-slider .heading-text ul li {
    list-style: initial;
    margin-bottom: 10px;
}

.crumina-module-slider .heading-text ul li:last-child {
    margin-bottom: 0;
}

.slider-tabs-vertical-line .swiper-slide {
    background-size: contain;
    margin-bottom: 125px;
    padding: 120px 0;
    height: auto;
}

.slider-tabs-vertical-line .slider-slides {
    position: absolute;
    bottom: 35px;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
}

.slider-tabs-vertical-thumb {
    margin-bottom: -310px;
}

.slider-slides--round-text .slides-item {
    display: block;
    margin-right: 0;
    width: auto;
    height: auto;
    line-height: 1.4;
    text-align: left;
    font-weight: 400;
    background-color: transparent;
    border-radius: 0;
    opacity: 1;
    font-size: inherit;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

.slider-slides--round-text .slides-item.slide-active .number {
    border-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.slider-slides--round-text .slides-item:after {
    content: '';
    display: block;
    width: 4px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 28px;
    background-color: #0069cc;
}

.slider-slides--round-text .number {
    font-size: 30px;
    font-weight: 700;
    float: left;
    margin-right: 35px;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    line-height: 1.8;
    border: 4px solid #0069cc;
}

.slider-slides--round-text .crumina-heading {
    overflow: hidden;
    margin-bottom: 0;
}

.crumina-module-info-list.crumina-module-slider .slides-item.slide-active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.screenshots-item-bottom .swiper-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.slider--full-width .swiper-container {
    padding-top: 20px;
    max-width: 1400px;
}

.screenshots-slider-style1 .swiper-slide {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: .5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.screenshots-slider-style1 .swiper-slide .screenshot-item img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.screenshots-slider-style1 .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.screenshots-slider-style1 .swiper-slide.swiper-slide-active .screenshot-item img {
    -webkit-box-shadow: 15px 0 20px rgba(72, 9, 94, 0.4);
    box-shadow: 15px 0 20px rgba(72, 9, 94, 0.4);
}

.screenshots-slider-style1 .swiper-slide.swiper-slide-prev, .screenshots-slider-style1 .swiper-slide.swiper-slide-next {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: .8;
}

.screenshots-slider-style2 .swiper-slide {
    opacity: .5;
}

.screenshots-slider-style2 .swiper-slide .screenshot-item img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.screenshots-slider-style2 .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.screenshots-slider-style2 .swiper-slide.swiper-slide-active .screenshot-item img {
    -webkit-box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
    box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
}

.screenshots-slider-style2.navigation-center-both-sides .btn-prev {
    opacity: 1;
    left: 0;
}

.screenshots-slider-style2.navigation-center-both-sides .btn-next {
    opacity: 1;
    right: 0;
}

.screenshot-item img {
    width: 100%;
}

.slider-with-device {
    position: relative;
    padding-bottom: 100px;
}

.slider-with-device .swiper-container {
    background: url("../img/smartphone2.png") 50% 0 no-repeat;
    background-size: contain;
    padding: 80px 0;
}

.slider-with-device .swiper-slide {
    opacity: .5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
}

.slider-with-device .swiper-slide .screenshot-item img {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.slider-with-device .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 1;
}

.slider-with-device .swiper-slide.swiper-slide-active .screenshot-item img {
    -webkit-box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
    box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
}

.slider--full-width-3items .swiper-slide {
    width: 1140px;
    padding-right: 60px;
    max-width: 100%;
    opacity: .2;
}

.slider--full-width-3items .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.slider-3-items .swiper-slide {
    opacity: .9;
}

.slider-3-items .swiper-slide img {
    border-radius: 20px;
    overflow: hidden;
    display: block;
    min-width: 100%;
}

.slider-3-items .swiper-slide.swiper-slide-active {
    opacity: 1;
}

/* fix for cube-slider background*/
.swiper-container-horizontal[data-effect='cube'] .swiper-slide, .swiper-container-horizontal[data-effect='flip'] .swiper-slide {
    background-color: #fff;
}

.swiper-container-horizontal[data-effect='cube'] .swiper-slide-active, .swiper-container-horizontal[data-effect='flip'] .swiper-slide-active {
    z-index: 10;
}

/*================= Responsive Mode ============*/
@media (max-width: 1270px) {
    .navigation-center-both-sides .btn-next {
        right: 10px;
    }

    .navigation-center-both-sides .btn-prev {
        left: 10px;
    }
}

@media (max-width: 1024px) {
    .slider-with-device .swiper-container {
        padding: 40px 0;
    }
}

@media (max-width: 800px) {
    .slider-tabs-vertical-thumb {
        margin-bottom: 0;
    }

    .navigation-center-both-sides .btn-next {
        right: 5px;
    }

    .navigation-center-both-sides .btn-prev {
        left: 5px;
    }
}

@media (max-width: 768px) {
    .slides-item {
        margin-right: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }

    .slider-with-device .swiper-container {
        padding: 60px 0;
    }

    .with-decoration .first-decoration,
    .with-decoration .second-decoration {
        width: 40px;
    }

    .main-slider .container {
        width: 100%;
        display: block;
    }
}

@media (max-width: 640px) {
    .navigation-top .swiper-container {
        top: auto;
    }

    .btn-prev.btn--style,
    .btn-next.btn--style {
        display: block;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .slider-with-device .swiper-slide {
        padding: 40px;
    }
}

@media (max-width: 460px) {
    .slides-item {
        margin-right: 15px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 16px;
    }

    .slider-slides--vertical-line .slides-item:first-child {
        margin-left: 0;
    }
}

/*------------- #INFO-BOX --------------*/
.info-boxes .crumina-info-box {
    margin-bottom: 30px;
}

.crumina-info-box .info-box-content {
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.crumina-info-box .info-box-image {
    margin-right: 30px;
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.info-box--standard .utouch-icon {
    height: 32px;
    width: 32px;
    margin-right: 25px;
}

.info-box--standard .info-box-image {
    margin-bottom: 20px;
    margin-right: 0;
}

.info-box--standard .info-box-image .info-box-image {
    margin-bottom: 0;
}

.info-box--standard .icon-big {
    margin-right: 40px;
    height: 75px;
    width: 75px;
}

.info-box--standard .icon-small {
    margin-right: 20px;
}

.info-box--standard .icon-small img {
    height: 40px;
    width: 40px;
}

.info-box--standard-hover {
    text-align: center;
}

.info-box--standard-hover .info-box-image {
    margin: 0 auto 25px;
    border-radius: 0;
    position: relative;
}

.info-box--standard-hover .cloud {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.info-box--standard-hover .info-box-image .utouch-icon {
    height: 70px;
    width: 70px;
}

.info-box--standard-hover .info-box-title {
    display: block;
    margin-bottom: 15px;
}

.info-box--standard-hover .info-box-text {
    margin-bottom: 15px;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.info-box--standard-hover .btn-next {
    opacity: .8;
}

.info-box--standard-hover .btn-next .icon-hover {
    opacity: 1;
}

.info-box--standard-hover:hover .btn-next {
    opacity: 1;
}

.info-box--standard-hover:hover .btn-next .icon-hover {
    opacity: 1;
}

.info-box--standard-round {
    text-align: left;
    position: relative;
    z-index: 10;
}

.info-box--standard-round .info-box-title {
    margin-bottom: 17px;
}

.info-box--standard-round .info-box-image {
    float: left;
    width: 100px;
    height: 100px;
    line-height: 140px;
    background-color: #fff;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    position: relative;
}

.info-box--standard-round .utouch-icon {
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.info-box--standard-round.icon-right {
    text-align: right;
}

.info-box--standard-round.icon-right .info-box-image {
    float: right;
    margin-right: 0;
    margin-left: 30px;
}

.negative-margin-right130 {
    margin-right: -130px;
}

.negative-margin-left130 {
    margin-left: -130px;
}

.particular-image {
    display: block;
    margin: -100px auto 50px;
}

.info-box--numbers .order-number {
    margin-bottom: 20px;
}

.info-box--numbers .info-box-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.info-box--time-line {
    text-align: center;
    margin-top: 20px;
}

.info-box--time-line .info-box-image {
    width: 100px;
    height: 100px;
    line-height: 135px;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto 15px;
}

.info-box--time-line .info-box-image img {
    width: 40px;
    height: 40px;
}

.info-box--time-line .info-box-image.bg-primary-color {
    -webkit-box-shadow: 10px 0 30px 0 rgba(0, 131, 255, 0.4);
    box-shadow: 10px 0 30px 0 rgba(0, 131, 255, 0.4);
}

.info-box--time-line .info-box-image.bg-orange {
    -webkit-box-shadow: 10px 0 30px 0 rgba(248, 145, 1, 0.4);
    box-shadow: 10px 0 30px 0 rgba(248, 145, 1, 0.4);
}

.info-box--time-line .info-box-image.bg-red {
    -webkit-box-shadow: 10px 0 30px 0 rgba(255, 49, 51, 0.4);
    box-shadow: 10px 0 30px 0 rgba(255, 49, 51, 0.4);
}

.info-box--time-line .info-box-image.bg-green {
    -webkit-box-shadow: 10px 0 30px 0 rgba(1, 162, 60, 0.4);
    box-shadow: 10px 0 30px 0 rgba(1, 162, 60, 0.4);
}

.info-box--time-line .utouch-icon {
    fill: #fff;
    height: 40px;
    width: 40px;
}

.info-box--time-line .timeline-year {
    margin-bottom: 17px;
}

.info-box--time-line .info-box-title {
    margin-bottom: 15px;
    display: block;
}

.time-line-arrow {
    position: absolute;
    top: 50px;
    right: -25px;
    opacity: .3;
}

.info-box--classic .utouch-icon {
    height: 60px;
    width: 60px;
}

.info-box--classic .info-box-image {
    float: left;
    margin: 20px 40px 0 0;
}

.info-box--classic .info-box-content {
    overflow: hidden;
}

.info-box--classic .info-box-title {
    margin-bottom: 17px;
}

.text-box .title {
    font-size: 16px;
    margin-bottom: 20px;
}

.text-box ul li {
    font-weight: 300;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
}

.text-box + .text-box {
    margin-top: 50px;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .display-flex.info-boxes {
        display: block;
    }

    .crumina-info-box.negative-margin-right130 {
        margin-right: 0;
    }

    .crumina-info-box.negative-margin-left130 {
        margin-left: 0;
    }

    .particular-image {
        margin: 0 auto 30px;
    }

    .particular-image + .btn {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .info-box--standard-hover .btn-next {
        opacity: 1;
    }

    .info-box--standard-hover .btn-next .icon-hover {
        opacity: 1;
    }

    .time-line-arrow {
        right: 0;
    }

    .info-box--standard-hover .info-box-image {
        margin: 0 auto 20px;
    }

    .info-box--standard-round .info-box-image {
        width: 70px;
        height: 70px;
        line-height: 100px;
    }

    .info-box--standard .icon-big {
        margin-right: 15px;
    }

    .info-box--classic .info-box-image {
        float: none;
        margin: 0;
    }
}

/*------------- #TESTIMONIAL --------------*/
.testimonials-wrap .crumina-testimonial-item {
    margin-bottom: 60px;
}

.crumina-testimonial-item {
    position: relative;
}

.crumina-testimonial-item .rait-stars {
    position: relative;
    z-index: 2;
}

.crumina-testimonial-item .author-name {
    display: block;
    margin: 0;
}

.crumina-testimonial-item .author-company {
    color: #63768d;
    display: block;
}

.crumina-testimonial-item .testimonial-text {
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.testimonial-img-author {
    border-radius: 100%;
    overflow: hidden;
    text-align: center;
}

.testimonial-item-author-top {
    text-align: center;
    padding-top: 20px;
}

.testimonial-item-author-top .author-info {
    text-align: center;
}

.testimonial-item-author-top .testimonial-text {
    font-size: 20px;
    margin-bottom: 70px;
    line-height: 1.3;
}

.testimonial-item-author-top .testimonial-img-author {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 40px;
}

.testimonial-item-author-top .testimonial-img-author img {
    -webkit-box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.4);
    box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.4);
}

.testimonial-item-author-top .author-name {
    margin-bottom: 10px;
}

.testimonial-item-arrow {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 0 0 15px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 0 0 15px 0 rgba(18, 25, 33, 0.1);
    margin: 15px 10px 0;
}

.testimonial-item-arrow .testimonial-text {
    margin-bottom: 20px;
}

.testimonial-item-arrow .author-info-wrap {
    margin-bottom: 10px;
}

.testimonial-item-arrow .author-info-wrap > * {
    display: inline-block;
    vertical-align: middle;
}

.testimonial-item-arrow .testimonial-img-author {
    margin-right: 20px;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    -webkit-box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.4);
    box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.4);
}

.testimonial-item-author-left .testimonial-img-author {
    width: 160px;
    height: 160px;
    line-height: 310px;
    float: left;
    background-color: #edf6fc;
    margin-right: 40px;
}

.testimonial-item-author-left .author-name {
    margin-bottom: 25px;
}

.testimonial-item-author-left .testimonial-text {
    font-weight: 400;
    margin-bottom: 25px;
}

.testimonial-item-author-left .author-info-wrap {
    overflow: hidden;
}

.testimonial-item-quote-right {
    padding: 0 40px 40px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 0 0 15px 0 rgba(18, 25, 33, 0.1);
    overflow: visible;
    margin: 80px 10px 0;
}

.testimonial-item-quote-right .testimonial-img-author {
    text-align: left;
    margin-bottom: -30px;
    top: -60px;
    position: relative;
    overflow: visible;
}

.testimonial-item-quote-right .testimonial-img-author img {
    border-radius: 100%;
    -webkit-box-shadow: 10px 0 30px 0 rgba(18, 25, 33, 0.15);
    box-shadow: 10px 0 30px 0 rgba(18, 25, 33, 0.15);
}

.testimonial-item-quote-right .testimonial-img-author .share-product, .testimonial-item-quote-right .testimonial-img-author .social__item.main {
    top: auto;
    bottom: 0;
    right: auto;
    left: 10px;
}

.testimonial-item-quote-right .author-name {
    font-size: 22px;
    margin-bottom: 10px;
    color: inherit;
}

.testimonial-item-quote-right .author-company {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-item-quote-right .testimonial-text {
    font-weight: 400;
    margin-bottom: 35px;
}

.testimonial-item-quote-right .quote {
    position: absolute;
    bottom: 20px;
    right: 40px;
}

.testimonial-item-quote-right .quote .utouch-icon {
    width: 60px;
    height: 60px;
    fill: #e6eff9;
}

.testimonial-item-quote-top {
    text-align: center;
}

.testimonial-item-quote-top .author-info {
    text-align: center;
}

.testimonial-item-quote-top .testimonial-text {
    font-size: 28px;
    margin-bottom: 35px;
}

.testimonial-item-quote-top .author-name {
    margin-bottom: 5px;
}

.testimonial-item-quote-top .quote .utouch-icon {
    width: 100px;
    height: 100px;
    fill: #e6eff9;
}

.rait-stars .utouch-icon {
    height: 13px;
    width: 13px;
    fill: #FECF39;
}

.rait-stars li {
    display: inline-block;
}

.rait-stars li + li {
    margin-left: 2px;
}

.crumina-module.testimonial-item-author-left .author-name {
    margin-bottom: 0;
}

.crumina-module.testimonial-item-author-left .author-info {
    margin-bottom: 20px;
}

/*================= Responsive Mode ============*/
@media (max-width: 990px) {
    .testimonial-item-author-left .testimonial-img-author {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 980px) {
    .testimonial-item-arrow {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-item-quote-top .testimonial-text {
        font-size: 20px;
    }
}

@media (max-width: 460px) {
    .testimonial-item-quote-right {
        padding: 0 10px 40px;
    }

    .testimonial-item-author-top .testimonial-text {
        margin-bottom: 20px;
    }
}

/*------------- #PAGINATION --------------*/
.swiper-pagination {
    position: absolute;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translate(-50%, 0) !important;
    transform: translate(-50%, 0) !important;
}

.swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #a1b7d2;
    margin: auto 5px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 10px;
}

.swiper-pagination.top-right {
    left: auto;
    bottom: auto;
    right: 0;
    top: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.swiper-pagination.bottom-left {
    left: 0;
    bottom: 0;
    -webkit-transform: translate(0) !important;
    transform: translate(0) !important;
    top: auto;
}

.swiper-pagination.right-bottom {
    right: 100px;
    bottom: -50px;
    top: auto;
    -webkit-transform: translate(0);
    transform: translate(0);
}

.swiper-pagination.pagination-white .swiper-pagination-bullet {
    background-color: #fff;
}

.pagination-bottom .swiper-container {
    padding-bottom: 80px;
}

.pagination-vertical {
    padding-left: 100px;
}

.pagination-vertical .swiper-pagination {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: auto;
}

.pagination-vertical .swiper-pagination .pagination-item, .pagination-vertical .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 9px auto;
}

.pagination-vertical .swiper-pagination .pagination-item.active, .pagination-vertical .swiper-pagination .pagination-item.swiper-pagination-bullet-active, .pagination-vertical .swiper-pagination .swiper-pagination-bullet.active, .pagination-vertical .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 10px;
    height: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 10px;
}

.pagination-vertical.pagination-vertical-right {
    padding-left: 0;
    margin-left: 0;
    padding-right: 100px;
    margin-right: -100px;
}

.pagination-vertical.pagination-vertical-right .swiper-pagination {
    left: auto;
    right: 10px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*================= Responsive Mode ============*/
@media (max-width: 1024px) {
    .swiper-pagination.bottom-left {
        bottom: 20px;
    }
}

/*------------- #OUR-VIDEO --------------*/
.crumina-our-video {
    overflow: hidden;
    min-width: 100%;
    position: relative;
    text-align: center;
}

.crumina-our-video .cloud {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.crumina-our-video .hand {
    position: relative;
    margin: -100px auto 0;
    z-index: 19;
    display: block;
}

.video-thumb {
    position: relative;
    display: inline-block;
    width: 100%;
}

.video-thumb .video-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
}

.video-thumb img {
    display: block;
    width: 100%;
}

.video-thumb.with-border-r {
    border-radius: 10px;
    overflow: hidden;
}

.with-border-r {
    border-radius: 10px;
    overflow: hidden;
}

.block-rounded-shadow .crumina-our-video {
    margin: 60px -60px;
}

.video-with-cloud .video-thumb {
    width: auto;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .block-rounded-shadow {
        padding: 30px;
    }

    .block-rounded-shadow .crumina-our-video {
        margin: 60px -30px;
    }

    .video-thumb .video-control {
        width: 30%;
    }
}

/*------------- #CLIENTS --------------*/
.crumina-clients {
    padding: 95px 0;
    background-image: url("../img/clouds12.png");
}

.clients-item {
    position: relative;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.clients-item:hover img {
    opacity: 0;
}

.clients-item:hover .hover {
    opacity: 1;
}

.clients-item img {
    position: relative;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.clients-item img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 5;
}

.clients-item .clients-images {
    position: relative;
    display: block;
    margin: auto;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .crumina-clients {
        padding: 40px 0;
    }

    .clients-item {
        margin-bottom: 20px;
    }
}

/*------------- #COUNTERS --------------*/
.counters {
    z-index: 2;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.crumina-counter-item .counter-numbers {
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.crumina-counter-item .counter-title {
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.crumina-counter-item .units {
    display: inline-block;
}

.counter-item-colored {
    text-align: center;
}

.counter-item-colored .counter-numbers {
    margin-bottom: 15px;
}

.counter-item-colored .counter-title {
    color: #516e90;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .counters {
        display: block;
        text-align: center;
        padding: 50px 0;
    }

    .crumina-counter-item {
        margin-bottom: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .crumina-counter-item .counter-numbers {
        font-size: 30px;
    }
}

/*------------- #PRICING-TABLES --------------*/
.crumina-pricing-tables-item {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-title {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-tables-item-standard .main-pricing-content {
    position: relative;
    width: calc(100% - 30px);
    background-color: #fff;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 60px;
    z-index: 5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-bottom: 80px;
}

.pricing-tables-item-standard .rate {
    margin-bottom: 13px;
    margin-top: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.pricing-tables-item-standard .rate .rate {
    font-size: 75%;
}

.pricing-tables-item-standard .price {
    font-size: 72px;
}

.pricing-tables-item-standard .pricing-title {
    color: #6987ab;
    margin-bottom: 30px;
}

.pricing-tables-item-standard .pricing-description {
    margin-bottom: 30px;
}

.pricing-tables-item-standard .sub-description {
    font-size: 14px;
    color: #566c86;
    margin-top: 27px;
    margin-bottom: 0;
}

.pricing-tables-item-standard.highlight-zoom, .pricing-tables-item-standard.hover-zoom:hover {
    margin-bottom: -30px;
    margin-top: -30px;
}

.pricing-tables-item-standard.highlight-zoom .main-pricing-content, .pricing-tables-item-standard.hover-zoom:hover .main-pricing-content {
    padding: 90px 60px;
}

.bg-pricing-content {
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% + 50px);
    right: 0;
    top: 30px;
    border-radius: 10px;
    text-align: center;
}

.bg-pricing-content .title {
    color: #fff;
    position: absolute;
    bottom: 20px;
    text-transform: uppercase;
    width: 100%;
    left: 0;
}

.position-item {
    color: #516e90;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.position-item.del {
    opacity: .6;
    text-decoration: line-through;
}

.pricing-line {
    height: 4px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.pricing-tables--item-with-thumb {
    text-align: center;
    padding: 60px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-tables--item-with-thumb .icon-img {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.pricing-tables--item-with-thumb .rate-wrap {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-tables--item-with-thumb .sub-description {
    margin-bottom: 20px;
}

.pricing-tables--item-with-thumb .cloud {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pricing-tables--item-with-thumb .pricing-thumb {
    position: relative;
    margin-bottom: 25px;
    line-height: 1;
}

.pricing-tables--item-with-thumb .pricing-thumb i {
    font-size: 80px;
    color: #516e90;
}

.pricing-tables--item-with-thumb .pricing-title {
    display: block;
    font-size: 28px;
}

.pricing-tables--item-with-thumb .more-arrow {
    float: none;
}

.pricing-tables--item-with-thumb .rate {
    margin: 0;
    line-height: 1;
    margin-bottom: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.pricing-tables--item-with-thumb .rate .sub-price {
    font-size: 75%;
    margin-bottom: 0;
}

.pricing-tables--item-with-thumb .pricing-description {
    margin-bottom: 35px;
}

.pricing-tables--item-with-thumb.highlight-zoom, .pricing-tables--item-with-thumb.hover-zoom:hover {
    margin-bottom: -30px;
    margin-top: -30px;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 131, 255, 0.2);
    box-shadow: 20px 0 60px 0 rgba(0, 131, 255, 0.2);
    border-bottom: 5px solid;
}

.pricing-tables-item-colored {
    padding: 60px 30px 90px;
    border-radius: 20px;
    text-align: center;
}

.pricing-tables-item-colored .rate {
    color: #fff;
    font-size: 48px;
    margin: 0 0 15px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.pricing-tables-item-colored .rate .rate {
    font-size: 75%;
}

.pricing-tables-item-colored .rate span {
    font-size: 72px;
}

.pricing-tables-item-colored .period {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .3em;
}

.pricing-tables-item-colored .main-pricing-content {
    border-radius: 20px;
    background-color: #fff;
    padding: 50px 30px 80px;
    margin-top: 45px;
    position: relative;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
}

.pricing-tables-item-colored .pricing-line {
    width: 70%;
    margin: 0 auto 35px;
}

.pricing-tables-item-colored .pricing-title {
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 27px 0;
}

.pricing-tables-item-colored .btn {
    position: absolute;
    top: calc(100% - 25px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    white-space: nowrap;
}

.pricing-tables-item-colored .position-item {
    margin-bottom: 8px;
}

.pricing-tables-item-colored.highlight-zoom, .pricing-tables-item-colored.hover-zoom:hover {
    margin-bottom: -30px;
    margin-top: -30px;
    padding: 90px 30px 120px;
}

.pricing-tables-wrap {
    border-radius: 10px;
    float: left;
    background-color: #171e25;
}

.pricing-tables-wrap.bg-light {
    background-color: transparent;
}

.bg-layer {
    position: absolute !important;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: no-repeat center;
}

.pricing-tables-item-solid {
    text-align: center;
    margin: 0 2px;
    min-height: 100%;
    padding: 60px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    z-index: 1;
}

.pricing-tables-item-solid .bg-layer {
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    background-color: #121921;
    border-radius: 10px;
    z-index: -1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-tables-item-solid .pricing-title {
    font-size: 30px;
    margin: 0 0 30px 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-tables-item-solid .btn {
    margin-top: auto;
}

.pricing-tables-item-solid .rate {
    color: #fff;
    font-size: 36px;
    margin: 0 0 10px 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.pricing-tables-item-solid .rate .rate {
    font-size: 75%;
}

.pricing-tables-item-solid .rate span {
    font-size: 60px;
}

.pricing-tables-item-solid .period {
    color: #fff;
    margin-bottom: 25px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-tables-item-solid .position-item {
    margin-bottom: 7px;
    color: #9db5d4;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pricing-tables-item-solid .pricing-tables-position {
    margin-bottom: 40px;
}

.pricing-tables-item-solid .sub-description {
    margin-bottom: 20px;
}

.pricing-tables-item-solid .pricing-description {
    color: #9db5d4;
}

.pricing-tables-item-solid.highlight-zoom, .pricing-tables-item-solid.hover-zoom:hover {
    z-index: 1000;
}

.pricing-tables-item-solid.highlight-zoom .position-item, .pricing-tables-item-solid.hover-zoom:hover .position-item {
    color: #4b5d73;
}

.pricing-tables-item-solid.highlight-zoom .pricing-description, .pricing-tables-item-solid.hover-zoom:hover .pricing-description {
    color: #4b5d73;
}

.pricing-tables-item-solid.highlight-zoom .bg-layer, .pricing-tables-item-solid.hover-zoom:hover .bg-layer {
    background-color: #fff;
    -webkit-transform: translate3d(0, 0, 0) scale(1.05);
    transform: translate3d(0, 0, 0) scale(1.05);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pricing-tables-item-solid.highlight-zoom .rate,
.pricing-tables-item-solid.highlight-zoom .period, .pricing-tables-item-solid.hover-zoom:hover .rate,
.pricing-tables-item-solid.hover-zoom:hover .period {
    color: #516e90;
}

.pricing-tables-item-solid.bg-light .position-item {
    color: #4b5d73;
}

.pricing-tables-item-solid.bg-light .pricing-description {
    color: #4b5d73;
}

.pricing-tables-item-solid.bg-light .bg-layer {
    background-color: #fff;
}

.pricing-tables-item-solid.bg-light .rate,
.pricing-tables-item-solid.bg-light .period {
    color: #516e90;
}

.pricing-tables-item-solid.bg-light:hover .position-item {
    color: #9db5d4;
}

.pricing-tables-item-solid.bg-light:hover .pricing-description {
    color: #9db5d4;
}

.pricing-tables-item-solid.bg-light:hover .bg-layer {
    background-color: #121921;
}

.pricing-tables-item-solid.bg-light:hover .rate,
.pricing-tables-item-solid.bg-light:hover .period {
    color: #fff;
}

.no-pricing-variants .period {
    display: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .pricing-wrap .row > * {
        margin-bottom: 40px;
    }
}

@media (max-width: 980px) {
    .pricing-tables-item-standard .price {
        font-size: 50px;
    }
}

.pricing-tables-wrap .no-padding {
    padding: 0 !important;
}

@media (max-width: 460px) {
    .pricing-tables-item-standard .main-pricing-content {
        padding: 60px 20px;
    }

    .pricing-tables-item-standard .main-pricing-content {
        padding: 90px 20px;
    }

    .pricing-tables--item-with-thumb .more-arrow {
        float: none;
        margin-bottom: 10px;
        display: block;
    }

    .pricing-tables--item-with-thumb .rate {
        float: none;
    }

    .pricing-tables-item-colored .rate,
    .pricing-tables-item-solid .rate {
        font-size: 24px;
    }

    .pricing-tables-item-colored .pricing-title {
        font-size: 18px;
    }

    .pricing-tables-item-colored .rate span,
    .pricing-tables-item-solid .rate span {
        font-size: 30px;
    }
}

/*------------- #SUBSCRIBE-FORM --------------*/
.crumina-module-subscribe-form {
    padding: 120px 0;
}

.subscribe-form {
    position: relative;
    float: left;
    width: 100%;
}

.subscribe-main-content {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 20px 0 60px 0 rgba(0, 0, 0, 0.1);
    width: calc(100% - 60px);
    margin-left: 60px;
    float: left;
    z-index: 5;
    position: relative;
    padding: 70px 10px 100px 100px;
}

.subscribe-layer {
    position: absolute;
    width: calc(100% - 60px);
    height: 100%;
    left: 0;
    top: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.subscribe-img {
    position: absolute;
    right: -100px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: -1;
}

.crumina-module-subscribe-form {
    padding: 0;
}

/*================= Styles for Email Subscribers (plugin) ============*/
.crumina-module-subscribe-form .es_subscription_form_submit {
    color: #fff;
}

.crumina-module-subscribe-form .es_subscription_message.error {
    margin-top: 10px;
    float: left;
}

.crumina-module-subscribe-form .btn.full-width {
    width: 100%;
}

/*================= Responsive Mode ============*/
@media (max-width: 1450px) {
    .subscribe-img {
        width: 40%;
        right: 0;
    }
}

@media (max-width: 1200px) {
    .subscribe-img {
        width: auto;
        position: relative;
        -webkit-transform: none;
        transform: none;
        top: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .subscribe-main-content {
        padding: 50px 10px;
        margin-left: 20px;
        width: calc(100% - 40px);
    }

    .subscribe-layer {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subscribe-main-content {
        margin-left: 0;
        width: 100%;
    }
}

/*------------- #MODULE-IMG--------------*/
.row-content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.img-bottom {
    display: inline-block;
    vertical-align: bottom;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .row-content-bottom {
        -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;
    }
}

@media (max-width: 1024px) {
    .row-content-bottom {
        display: block;
    }
}

/*------------- #SOCIALS --------------*/
.socials {
    margin: 15px 0;
}

.socials li {
    display: inline-block;
    margin-right: 10px;
}

.socials li:last-child {
    margin-right: 0;
}

.socials .utouch-icon {
    height: 15px;
    width: 15px;
    fill: #6987ab;
    display: inline-block;
    vertical-align: middle;
}

.social__item {
    position: relative;
    cursor: pointer;
}

.socials--round .social__item {
    width: 32px;
    height: 32px;
    line-height: 26px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid #d8e1ec;
    fill: #6987ab;
    display: block;
    background-color: transparent;
}

.socials--round .social__item:hover {
    border-color: transparent;
    -webkit-box-shadow: 5px 0 10px 0 rgba(0, 131, 255, 0.3);
    box-shadow: 5px 0 10px 0 rgba(0, 131, 255, 0.3);
}

.socials--round .social__item:hover .utouch-icon {
    fill: #fff;
}

.socials--round .social__item:hover.rss {
    background-color: #f4b459;
}

.socials--round .social__item:hover.mail {
    background: #996DD1;
}

.socials--round .social__item:hover.pinterest {
    background: #cc2127;
}

.socials--round .social__item:hover.googleplus {
    background: #dd4b39;
}

.socials--round .social__item:hover.telegram {
    background: #38AFE2;
}

.socials--round .social__item:hover.google {
    background: #dd4b39;
}

.socials--round .social__item:hover.facebook {
    background: #3b5998;
}

.socials--round .social__item:hover.twitter {
    background: #55acee;
}

.socials--round .social__item:hover.amazon {
    background-color: #F69B06;
}

.socials--round .social__item:hover.behance {
    background-color: #2D2D2D;
}

.socials--round .social__item:hover.bing {
    background-color: #FFA616;
}

.socials--round .social__item:hover.creative-market {
    background-color: #8DA741;
}

.socials--round .social__item:hover.deviantart {
    background-color: #1B1B1B;
}

.socials--round .social__item:hover.dribbble {
    background-color: #000000;
}

.socials--round .social__item:hover.dropbox {
    background-color: #0BA4E0;
}

.socials--round .social__item:hover.envato {
    background-color: #6D9C3E;
}

.socials--round .social__item:hover.flickr {
    background-color: #26A9E1;
}

.socials--round .social__item:hover.instagram {
    background-color: #E75351;
}

.socials--round .social__item:hover.kickstarter {
    background-color: #14E06E;
}

.socials--round .social__item:hover.linkedin {
    background-color: #4A8F9E;
}

.socials--round .social__item:hover.medium {
    background-color: #00E56B;
}

.socials--round .social__item:hover.periscope {
    background-color: #3FA4C4;
}

.socials--round .social__item:hover.quora {
    background-color: #F85F62;
}

.socials--round .social__item:hover.reddit {
    background-color: #F05825;
}

.socials--round .social__item:hover.shutterstock {
    background-color: #008EC0;
}

.socials--round .social__item:hover.skype {
    background-color: #00AAF1;
}

.socials--round .social__item:hover.snapchat {
    background-color: #FFED45;
}

.socials--round .social__item:hover.soundcloud {
    background-color: #FF3300;
}

.socials--round .social__item:hover.spotify {
    background-color: #1ED760;
}

.socials--round .social__item:hover.trello {
    background-color: #0079BF;
}

.socials--round .social__item:hover.tumblr {
    background-color: #36465D;
}

.socials--round .social__item:hover.vimeo {
    background-color: #1AB7EA;
}

.socials--round .social__item:hover.vk {
    background-color: #6383A8;
}

.socials--round .social__item:hover.whatsapp {
    background-color: #25D366;
}

.socials--round .social__item:hover.wikipedia {
    background-color: #000000;
}

.socials--round .social__item:hover.wordpress {
    background-color: #21759B;
}

.socials--round .social__item:hover.youtube {
    background-color: #CD201F;
}

.socials--round .utouch-icon {
    height: 15px;
    width: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.socials--colored .social__item {
    border-color: transparent;
}

.socials--colored .social__item.rss {
    background-color: #f4b459;
}

.socials--colored .social__item.mail {
    background: #996DD1;
}

.socials--colored .social__item.pinterest {
    background: #cc2127;
}

.socials--colored .social__item.googleplus {
    background: #dd4b39;
}

.socials--colored .social__item.telegram {
    background: #38AFE2;
}

.socials--colored .social__item.google {
    background: #dd4b39;
}

.socials--colored .social__item.facebook {
    background: #3b5998;
}

.socials--colored .social__item.twitter {
    background: #55acee;
}

.socials--colored .social__item.amazon {
    background-color: #F69B06;
}

.socials--colored .social__item.behance {
    background-color: #2D2D2D;
}

.socials--colored .social__item.bing {
    background-color: #FFA616;
}

.socials--colored .social__item.creative-market {
    background-color: #8DA741;
}

.socials--colored .social__item.deviantart {
    background-color: #1B1B1B;
}

.socials--colored .social__item.dribbble {
    background-color: #000000;
}

.socials--colored .social__item.dropbox {
    background-color: #0BA4E0;
}

.socials--colored .social__item.envato {
    background-color: #6D9C3E;
}

.socials--colored .social__item.flickr {
    background-color: #26A9E1;
}

.socials--colored .social__item.instagram {
    background-color: #E75351;
}

.socials--colored .social__item.kickstarter {
    background-color: #14E06E;
}

.socials--colored .social__item.linkedin {
    background-color: #4A8F9E;
}

.socials--colored .social__item.medium {
    background-color: #00E56B;
}

.socials--colored .social__item.periscope {
    background-color: #3FA4C4;
}

.socials--colored .social__item.quora {
    background-color: #F85F62;
}

.socials--colored .social__item.reddit {
    background-color: #F05825;
}

.socials--colored .social__item.shutterstock {
    background-color: #008EC0;
}

.socials--colored .social__item.skype {
    background-color: #00AAF1;
}

.socials--colored .social__item.snapchat {
    background-color: #FFED45;
}

.socials--colored .social__item.soundcloud {
    background-color: #FF3300;
}

.socials--colored .social__item.spotify {
    background-color: #1ED760;
}

.socials--colored .social__item.trello {
    background-color: #0079BF;
}

.socials--colored .social__item.tumblr {
    background-color: #36465D;
}

.socials--colored .social__item.vimeo {
    background-color: #1AB7EA;
}

.socials--colored .social__item.vk {
    background-color: #6383A8;
}

.socials--colored .social__item.whatsapp {
    background-color: #25D366;
}

.socials--colored .social__item.wikipedia {
    background-color: #000000;
}

.socials--colored .social__item.wordpress {
    background-color: #21759B;
}

.socials--colored .social__item.youtube {
    background-color: #CD201F;
}

.socials--colored .social__item:hover {
    background-color: inherit;
}

.socials--colored .social__item .utouch-icon {
    fill: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*------------- #TEAMMEMBERS --------------*/
.teammembers-wrap .crumina-teammembers-item {
    margin-bottom: 80px;
}

.crumina-teammembers-item .teammembers-thumb {
    width: 260px;
    height: 260px;
    background-color: #edf6fc;
    border-radius: 100%;
    text-align: center;
    float: left;
    margin-right: 40px;
    position: relative;
    margin-bottom: 30px;
}

.crumina-teammembers-item .teammembers-thumb img {
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.crumina-teammembers-item .teammember-content {
    overflow: hidden;
    padding-top: 15px;
}

.crumina-teammembers-item .teammembers-item-prof {
    text-transform: uppercase;
    font-size: 14px;
    color: #6987ab;
    font-weight: 700;
    margin-bottom: 17px;
}

.crumina-teammembers-item .teammembers-item-name {
    margin-bottom: 20px;
    display: block;
}

.crumina-teammembers-item p {
    margin-bottom: 30px;
}

.teammember-item--author-in-round .teammembers-thumb {
    width: 200px;
    height: 200px;
}

.teammember-item--author-in-round .teammembers-thumb img {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    border-radius: 100%;
    -webkit-box-shadow: 5px 0 10px 0 rgba(18, 25, 33, 0.15);
    box-shadow: 5px 0 10px 0 rgba(18, 25, 33, 0.15);
}

.teammember-item--author-in-round .teammembers-thumb .btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.teammember-list > li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dbe3ec;
}

.teammember-list > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.thumb--big .teammembers-thumb {
    width: 260px;
    height: 260px;
}

.teammember-item--author-round-top {
    text-align: center;
}

.teammember-item--author-round-top .teammembers-thumb {
    overflow: hidden;
    float: none;
    margin-right: 0;
    margin: 0 auto 30px;
}

.teammember-item--author-round-top .teammembers-thumb img {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
}

.teammember-item--author-round-top .teammember-content {
    padding-top: 0;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .crumina-teammembers-item .teammembers-thumb {
        float: none;
        margin-right: 0;
    }

    .teammember-item--author-in-round .teammembers-thumb {
        float: left;
        margin-right: 20px;
    }

    .teammember-item--author-round-top .teammembers-thumb {
        margin: 0 auto 30px;
    }

    .thumb--big .teammembers-thumb {
        width: 100px;
        height: 100px;
    }

    .crumina-teammembers-item .teammembers-item-prof {
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .teammember-item--author-in-round .teammembers-thumb {
        width: 100px;
        height: 100px;
        float: none;
        margin-right: 0;
        margin-bottom: 0;
    }

    .teammember-item--author-in-round .teammembers-thumb .btn {
        bottom: 0;
        left: 0;
    }
}

/*------------- #PRODUCT-CASE--------------*/
.crumina-case-item {
    float: left;
    position: relative;
    padding: 30px 0 0;
    overflow: hidden;
}

.crumina-case-item .square-colored {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.crumina-case-item:hover .square-colored:before {
    opacity: 1;
}

.crumina-case-item:hover .case-item__thumb {
    -webkit-transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(0deg) rotateX(0deg);
    transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(0deg) rotateX(0deg);
}

.crumina-case-item.case-item--no-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.crumina-case-item.case-item--no-image .case-item-content {
    padding: 85px 20px 30px;
}

.crumina-case-item .more-arrow {
    color: inherit;
    fill: inherit;
}

.crumina-case-item .more-arrow:hover {
    color: inherit;
    fill: inherit;
}

.case-item__thumb {
    float: left;
    margin: 0 40px;
    -webkit-box-shadow: 30px 0 25px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 30px 0 25px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    position: relative;
    -webkit-transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(30deg) rotateX(20deg);
    transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(30deg) rotateX(20deg);
}

.case-item__thumb a {
    display: block;
}

.case-item__thumb img {
    display: inline-block;
    vertical-align: bottom;
}

.case-item-content {
    overflow: hidden;
    position: relative;
    padding: 85px 20px 30px 0;
    color: #fff;
}

.case-item-content .title {
    color: inherit;
    margin-bottom: 40px;
    line-height: 1.25;
}

.case-item-wrap .crumina-case-item {
    margin-bottom: 100px;
}

.crumina-module.crumina-case-item {
    width: 100%;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .case-item__thumb {
        float: none;
        display: inline-block;
    }

    .case-item-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .case-item-wrap .crumina-case-item {
        margin-bottom: 30px;
    }
}

.case-item-grid {
    padding: 30px;
    background-color: #dbe3ec;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
}

@media (max-width: 800px) {
    .case-item-grid {
        margin-bottom: 30px;
    }
}

.case-item-grid .case-item_thumb {
    margin-bottom: 34px;
    -webkit-box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.3);
}

.case-item-grid .case-item_title {
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.case-item-grid .case-item_cat {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.case-item-grid .case-item_cat a {
    display: inline-block;
    color: #4b5d73;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.case-item-grid:hover .case-item_title {
    color: #fff;
}

.case-item-grid:hover .case-item_cat {
    color: rgba(255, 255, 255, 0.5);
}

.case-item-grid:hover .case-item_cat a {
    color: rgba(255, 255, 255, 0.5);
}

.case-item-grid:hover .case-item_cat a:hover {
    color: white;
}

.case-item-grid.big {
    padding-bottom: 60px;
}

.case-item-grid.big .case-item__thumb {
    margin-bottom: 60px;
}

.case-item-grid.big .case-item__cat a {
    font-size: 16px;
}

.case-item-grid.big .case-item__title {
    font-size: 24px;
}

@media (max-width: 800px) {
    .case-item-grid.big .case-item__title {
        font-size: 18px;
    }
}

/*------------- #ZOOM IMAGE --------------*/
.crumina-zoom-image {
    position: relative;
    display: inline-block;
}

.crumina-zoom-image img {
    display: inline-block;
}

.crumina-zoom-image:hover .zoom-round-img {
    -webkit-transition: all 2.5s cubic-bezier(0.5, -0.01, 0, 1.005);
    transition: all 2.5s cubic-bezier(0.5, -0.01, 0, 1.005);
    -webkit-transform: perspective(50em) translateZ(0) translateY(50%) rotateY(0deg) rotateX(3deg) scale(1);
    transform: perspective(50em) translateZ(0) translateY(50%) rotateY(0deg) rotateX(3deg) scale(1);
}

.zoom-round-img {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 50%) scale(0.4) rotate(90deg);
    transform: translate(0, 50%) scale(0.4) rotate(90deg);
    max-width: 100%;
    border-radius: 100%;
    border: 14px solid rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
    box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/*------------- #ACCORDIONS --------------*/
.crumina-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-panel {
    position: relative;
    background-color: #ecf5fe;
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion-panel.active {
    background-color: #fff;
    border: 2px solid;
    -webkit-box-shadow: 5px 0 20px rgba(0, 131, 255, 0.3);
    box-shadow: 5px 0 20px rgba(0, 131, 255, 0.3);
}

.accordion-heading {
    display: table;
    padding: 11px 25px;
    font-size: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.accordion-heading span {
    display: table-cell;
    vertical-align: middle;
}

.accordion-heading span + span {
    width: 100%;
}

.accordion-heading .title {
    font-weight: 700;
    color: #516e90;
}

.accordion-heading .icons {
    padding-right: 25px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
    position: relative;
    top: -2px;
}

.accordion-heading .icons .utouch-icon {
    height: 10px;
    width: 10px;
    fill: #839bbd;
}

.accordion-heading .icons .active {
    opacity: 0;
    position: absolute;
    left: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    top: 11px;
}

.crumina-accordion .panel-info {
    line-height: 1.3;
    padding: 10px 20px 30px 70px;
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.crumina-accordion .panel-info > * {
    float: none;
}

.crumina-accordion .panel-heading {
    margin-bottom: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.crumina-accordion .panel-heading.active {
    border-radius: 50px 50px 0 0;
    margin-bottom: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.crumina-accordion .panel-heading.active .accordion-heading {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.crumina-accordion .panel-heading.active .accordion-heading i, .crumina-accordion .panel-heading.active .accordion-heading .utouch-icon {
    opacity: 0;
}

.crumina-accordion .panel-heading.active .accordion-heading i.active, .crumina-accordion .panel-heading.active .accordion-heading .utouch-icon.active {
    opacity: 1;
}

.crumina-accordion .panel-heading.active a {
    padding-bottom: 0;
}

.accordion__title {
    font-size: 19px;
    font-weight: 400;
}

.accordion__content__a {
    display: inline-block !important;
    color: #2dafd6 !important;
    font-size: 15px;
    text-decoration: underline;
}

.accordion__module .after::after {
    right: 72%;
    top: 36%;
    width: 2%;
}

/*=====================================================
                Transition
=======================================================*/
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
}

/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .accordion-heading .title {
        line-height: 1;
        font-size: 13px;
    }

    .crumina-accordion .panel-info {
        font-size: 13px;
    }
}

/*------------- #BLOGS --------------*/
.post-thumb {
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.post-thumb img {
    border-radius: 10px 10px 0 0;
    display: block;
    width: 100%;
}

.post-thumb .video-control img {
    border-radius: 20px;
}

.post .post-thumb iframe {
    max-width: 100%;
}

.post .post-thumb > img {
    margin: auto;
    width: auto;
}

.post {
    border-radius: 10px;
    -webkit-box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
    box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin-bottom: 60px;
    position: relative;
}

.post p {
    margin-bottom: 30px;
}

.post .overlay-standard {
    opacity: 0;
}

.post .link-image {
    position: absolute;
    top: 50%;
    left: 40%;
    -webkit-transform: translate(0, -50%) scale(0);
    transform: translate(0, -50%) scale(0);
    opacity: 0;
    z-index: 50;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.post .link-image .utouch-icon {
    height: 40px;
    width: 40px;
    fill: #fff;
}

.post .link-post {
    position: absolute;
    top: 50%;
    right: 40%;
    -webkit-transform: translate(0, -50%) scale(0);
    transform: translate(0, -50%) scale(0);
    opacity: 0;
    z-index: 50;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.post .link-post .utouch-icon {
    height: 40px;
    width: 40px;
    fill: #fff;
}

.post:hover {
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.2);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.2);
}

.post:hover .overlay-standard {
    opacity: 1;
}

.post:hover .link-post, .post:hover .link-image {
    opacity: 1;
    -webkit-transform: translate(0, -50%) scale(0.9);
    transform: translate(0, -50%) scale(0.9);
}

.post:hover .link-post:hover, .post:hover .link-image:hover {
    -webkit-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1);
}

.post.sticky:before {
    content: '';
    background: url("../svg/icon252.svg") 50% 50% no-repeat;
    background-size: 60%;
    display: block;
    text-align: center;
    position: absolute;
    z-index: 5;
    top: 60px;
    right: 100%;
    height: 45px;
    width: 35px;
    background-color: #ff3133;
    padding: 10px;
    border-radius: 10px 0 0 10px;
}

.post.quote blockquote {
    margin: 0;
    z-index: 1;
}

.post.quote blockquote cite {
    opacity: .7;
    margin-top: 15px;
}

.post.quote blockquote cite:before {
    color: inherit;
}

.post.quote blockquote:before {
    display: none;
}

.post.quote .post-thumb {
    padding: 100px;
}

@media (max-width: 1024px) {
    .post.quote .post-thumb {
        padding: 30px;
    }
}

.post.quote .testimonial-content {
    position: relative;
}

.post.quote .testimonial-img-author {
    float: left;
    margin-right: 30px;
    width: 60px;
    height: 60px;
}

.post.quote .author-company {
    font-weight: 700;
}

.post.quote .author-name {
    margin: 0;
}

.post.quote .text p {
    font-size: 36px;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 570px) {
    .post.quote .text p {
        font-size: 18px;
    }
}

.post.quote .quote {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
}

@media (max-width: 360px) {
    .post.quote .quote {
        display: none;
    }
}

.post.quote .author-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post.quote .author-info-wrap .author-name {
    color: #FECF39;
}

.post.video .overlay-standard {
    opacity: 1;
}

.post.video .video-control {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.post.link .post-thumb {
    padding: 95px 100px;
}

@media (max-width: 1024px) {
    .post.link .post-thumb {
        padding: 80px;
    }
}

@media (max-width: 570px) {
    .post.link .post-thumb {
        padding: 30px;
    }
}

.post.link .post-thumb .site-link {
    color: #FECF39;
    display: block;
}

.post.link .thumb-content-title {
    color: #fff;
    margin-bottom: 30px;
    display: block;
    font-size: 36px;
}

.post.link .thumb-content {
    position: relative;
    z-index: 50;
}

.post.link .thumb-content .post-link {
    height: 68px;
    width: 68px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.post__content {
    padding: 60px 60px 40px;
    position: relative;
}

.post__content .post-additional-info {
    margin-top: 20px;
}

.post__content ul li {
    margin-bottom: 5px;
}

.post__content-info {
    overflow: hidden;
}

.post__date {
    float: left;
    margin-right: 60px;
    font-weight: 700;
    font-size: 14px;
}

.post__date time > * {
    display: block;
    line-height: 1;
}

.post__date .number {
    font-size: 50px;
    margin-bottom: 10px;
    color: #6987ab;
}

.post__date .month {
    margin-bottom: 7px;
}

.post__date .day {
    font-weight: 400;
    color: #7b9abf;
}

.post__title {
    margin-bottom: 1em;
    display: block;
    margin-top: 0;
    line-height: 1.1em;
}

.post-additional-info {
    color: #6987ab;
}

.post-additional-info > * {
    display: inline-block;
}

.post-additional-info > * + * {
    margin-left: 30px;
}

.post-additional-info a {
    color: #516e90;
    font-weight: 700;
}

.post-additional-info a span {
    color: #6987ab;
}

.post-additional-info .btn-next {
    float: right;
    opacity: 1;
    top: -5px;
    margin-right: 5px;
}

.post-additional-info .btn-next:hover {
    margin-right: 0;
}

.post-additional-info .btn-next:hover .icon-hover {
    opacity: 1;
}

.share-product {
    position: absolute;
    right: 60px;
    top: -20px;
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    visibility: hidden;
    padding-right: 50px;
    z-index: 999;
    cursor: pointer;
}

.share-product .socials {
    margin: 0;
}

.share-product .socials li {
    margin-right: 5px;
}

.share-product .socials li:last-child {
    margin-right: 0;
}

.share-product.open {
    visibility: visible;
}

.share-product.open .social__item.twitter {
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transition-duration: 0.9s;
    transition-duration: 0.9s;
}

.share-product.open .social__item.facebook {
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.share-product.open .social__item.googleplus {
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
}

.share-product.open .social__item.linkedin {
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.share-product.open .social__item.rss {
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.share-product .social__item {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: inline-block;
    opacity: 0;
    text-align: center;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    -webkit-transition: 0.85s;
    transition: 0.85s;
}

.share-product .social__item .utouch-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.share-product .social__item .utouch-icon {
    height: 16px;
    width: 16px;
    fill: #fff;
}

.social__item.main {
    opacity: 1;
    filter: alpha(opacity=100);
    padding: 0;
    z-index: 5;
    letter-spacing: -0.5px;
    position: absolute;
    cursor: pointer;
    right: 60px;
    top: -20px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    will-change: max-width, padding-right, opacity, text-indent;
    width: 40px;
    height: 40px;
    line-height: 48px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 30px rgba(39, 63, 91, 0.2);
    box-shadow: 0 0 30px rgba(39, 63, 91, 0.2);
    text-align: center;
}

.social__item.main .utouch-icon, .social__item.main svg {
    height: 18px;
    width: 18px;
    color: #829dbc;
    fill: #829dbc;
    position: relative;
}

.social__item.main.item--small {
    width: 32px;
    height: 32px;
    line-height: 40px;
}

.share-product .social__item .utouch-icon {
    outline: 26px solid rgba(44, 42, 42, 0);
    outline-offset: -12px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.share-product .social__item:hover .utouch-icon {
    outline: 26px solid rgba(44, 42, 42, 0.2);
    fill: #fff;
}

.share-product .social__item.twitter {
    margin-left: 0;
    -webkit-transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    transition-timing-function: cubic-bezier(0.41, 1.26, 0.56, 0.99);
    -webkit-transform: translateX(160px) rotate(582deg);
    transform: translateX(160px) rotate(582deg);
    background: #55acee;
}

.share-product .social__item.facebook {
    -webkit-transform: translateX(120px) rotate(436deg);
    transform: translateX(120px) rotate(436deg);
    background: #3b5998;
}

.share-product .social__item.googleplus {
    -webkit-transform: translateX(80px) rotate(290deg);
    transform: translateX(80px) rotate(290deg);
    background: #dd4b39;
}

.share-product .social__item.linkedin {
    -webkit-transform: translateX(40px) rotate(145deg);
    transform: translateX(40px) rotate(145deg);
    background-color: #0073B0;
}

.share-product .social__item.rss {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    background-color: #f4b459;
}

.share-product:hover .social__item,
.share-product.hover .social__item,
.share-product.open .social__item {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}

.share-product--item-right {
    padding-left: 42px;
    padding-right: 0;
    height: 32px;
}

.share-product--item-right .social__item.main {
    right: auto;
    left: 0;
    width: 32px;
    height: 32px;
}

.share-product--item-right .social__item {
    height: 32px;
    width: 32px;
}

/*------------- #Styles for standard WP-classes for elements on blog pages --------------*/
.gallery {
    margin: 0 -5px 1.6em;
}

.gallery-item {
    display: inline-block;
    padding: 0;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.gallery-item a {
    padding: 0 5px;
    display: inline-block;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

@media (max-width: 768px) {
    .gallery-columns-3 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

@media (max-width: 768px) {
    .gallery-columns-4 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

@media (max-width: 768px) {
    .gallery-columns-5 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

@media (max-width: 768px) {
    .gallery-columns-6 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

@media (max-width: 768px) {
    .gallery-columns-7 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

@media (max-width: 768px) {
    .gallery-columns-8 .gallery-item {
        max-width: 50%;
    }
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

@media (max-width: 768px) {
    .gallery-columns-9 .gallery-item {
        max-width: 50%;
    }
}

.gallery-icon img {
    margin: 0 auto;
}

.gallery-caption {
    display: block;
    font-size: .8rem;
    line-height: 1.5;
    background-color: #e9f5ff;
    margin: 0 5px 10px;
    border-radius: 5px;
    padding: 8px;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

figure.gallery-item {
    margin-right: 0;
    margin-left: 0;
}

/*------------- #Post styles for list (ul) --------------*/
.entry-content ul li {
    font-size: 1em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.entry-content ul li:before {
    content: '';
    position: relative;
    width: 12px;
    height: 12px;
    background-image: url("../svg/correct-symbol.svg");
    background-size: cover;
    margin-right: 20px;
    display: block;
    float: left;
    top: 7px;
}

.entry-content ol li:before,
.ui-tabs li:before{
    display: none;
}

.entry-content ol ul li:before {
    display: block;
}

.entry-content ol ul ol li:before {
    display: none;
}

.entry-content .tags-inline li {
    font-size: 14px;
    font-weight: 400;
}

.entry-content .tags-inline li:before {
    display: none;
}

.entry-content .socials li::before {
    display: none;
}

/*------------- #Post-standard-details --------------*/
.post-standard-details {
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.post-standard-details .post-additional-info {
    margin-bottom: 25px;
    margin-top: 0;
}

.post-standard-details .post__date {
    margin-right: 0;
    float: none;
}

.post-standard-details .post__date time > * {
    display: inline-block;
    line-height: 1.6;
}

.post-standard-details .post__date .number {
    margin-bottom: 0;
    font-size: inherit;
}

.post-standard-details .post__date .month {
    margin-bottom: 0;
}

.post-standard-details .post__date .day {
    font-weight: 700;
    color: #6987ab;
}

.post-details-shared {
    padding: 55px 0 0;
    border-top: 2px solid #dbe3ec;
    margin-top: 20px;
}

.block-rounded-shadow .post-details-shared {
    border-top: none;
}

.tags-inline li {
    display: inline-block;
    font-size: 14px;
}

.tags-inline li + li {
    margin-left: 5px;
}

.tags-inline li:first-child {
    font-weight: 700;
    color: #516e90;
}

.blog-details-author {
    padding: 55px 60px;
    -webkit-box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1) inset;
    box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1) inset;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.blog-details-author .author-name {
    color: #516e90;
    margin-bottom: 15px;
    display: block;
}

.blog-details-author .img-author {
    float: left;
    margin-right: 40px;
}

.blog-details-author .img-author img {
    border-radius: 100%;
    -webkit-box-shadow: 10px 0 30px rgba(18, 25, 33, 0.15) inset;
    box-shadow: 10px 0 30px rgba(18, 25, 33, 0.15) inset;
}

.blog-details-author:before {
    position: absolute;
    display: inline-block;
    content: '';
    top: -15px;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #eff0f0;
    left: 115px;
}

/* =WordPress Core
-------------------------------------------------------------- */
.align-center,
.aligncenter {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

img.aligncenter {
    display: block;
    margin: 20px auto;
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 40px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    border: 2px solid #dbe3ec;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    text-align: center;
}

.wp-caption img {
    margin-bottom: 15px;
}

.wp-caption.wp-caption-text {
    font-size: 14px;
    margin-bottom: 0;
}

.wp-caption-text {
    font-size: 11px;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption p.wp-caption-text {
    font-size: 14px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.entry-footer {
    text-align: center;
}

.post-edit-link {
    margin: 30px auto;
}

.post-details-shared .post-edit-link {
    margin: 0 0 30px 0;
}

/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .post-additional-info > * {
        display: block;
    }

    .post-additional-info > * + * {
        margin-top: 10px;
        margin-left: 0;
    }

    .post-additional-info .btn-next {
        margin-right: 0;
        float: left;
    }

    .post-additional-info .icon-hover {
        opacity: 1;
    }

    .post__content {
        padding: 25px;
    }

    .post__date {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .post.link .post-thumb {
        padding: 30px;
    }

    .blog-details-author .img-author {
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .blog-details-author {
        padding: 20px;
    }

    .post.sticky::before {
        top: -30px;
        left: 10px;
        right: auto;
        height: 30px;
        width: 30px;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 560px) {
    .post .link-image {
        left: 30%;
    }

    .post .link-post {
        right: 30%;
    }

    .social__item.main {
        right: 20px;
    }

    .share-product {
        right: 20px;
    }

    .post__content {
        padding: 15px;
    }

    .post.link .thumb-content-title {
        font-size: 20px;
    }

    .wp-caption {
        min-width: 100%;
    }
}

/*------------- #NAVIGATION --------------*/
.navigation {
    margin: 20px 0;
    width: 100%;
    position: relative;
    text-align: center;
}

.page-numbers {
    position: relative;
    background-color: #eaf4fe;
    display: inline-block;
    margin: 0 12px 0 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #6987ab;
    font-size: 14px;
    border-radius: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.page-numbers:hover {
    color: #fff;
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
}

.page-numbers.current {
    background-color: transparent;
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
}

.page-numbers.current:hover {
    color: #0083ff;
    background-color: transparent;
}

.page-numbers span {
    position: relative;
}

.page-links a {
    position: relative;
    background-color: #eaf4fe;
    display: inline-block;
    margin: 0 8px 0 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid transparent;
    text-transform: uppercase;
    color: #6987ab;
    font-size: 14px;
    border-radius: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.page-links a:first-child {
    margin-left: 10px;
}

.page-links a:hover {
    color: #fff;
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.15);
}

.navigation-prev-next > :not(.next):not(.prev) {
    display: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 640px) {
    .page-numbers {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin: 0 8px 0 0;
    }
}

@media (max-width: 460px) {
    .page-numbers {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 12px;
        margin: 0 8px 0 0;
    }
}

/*------------- #EVENTS --------------*/
.event-item .img-author {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    margin-right: 18px;
    float: left;
    overflow: hidden;
}

.event-item .author-name {
    font-size: 14px;
    margin-bottom: 0;
}

.event-item .event-title {
    display: block;
    margin-bottom: 15px;
}

.event-item .author-company {
    font-size: 14px;
    color: #6987ab;
}

.single-fw-event #primary {
    margin-top: 70px;
}

/*------------- #PAGINATION-ARROW --------------*/
.pagination-arrow {
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.pagination-arrow span {
    display: block;
}

.pagination-arrow .list-post {
    -ms-flex-item-align: center;
    align-self: center;
    line-height: .7;
}

.pagination-arrow .list-post .utouch-icon {
    width: 32px;
    height: 32px;
    fill: #6987ab;
}

.btn-next-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.btn-next-wrap .btn-next:hover {
    margin-left: 0;
    margin-right: 0;
}

.btn-next-wrap .btn-content {
    position: relative;
    text-align: right;
    margin-right: 35px;
}

.btn-next-wrap .btn-content .btn-content-title {
    text-transform: uppercase;
    font-size: 11px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.btn-next-wrap .btn-content .btn-content-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    color: #6987ab;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.btn-next-wrap:hover {
    margin-right: -2px;
    margin-left: 2px;
}

.btn-next-wrap:hover .btn-next {
    opacity: 1;
}

.btn-next-wrap:hover .icon-hover {
    opacity: 1;
}

.btn-prev-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40%;
}

.btn-prev-wrap .btn-prev {
    margin-right: 35px;
}

.btn-prev-wrap .btn-prev:hover {
    margin-left: 0;
    margin-right: 35px;
}

.btn-prev-wrap .btn-content {
    position: relative;
}

.btn-prev-wrap .btn-content .btn-content-title {
    text-transform: uppercase;
    font-size: 11px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.btn-prev-wrap .btn-content .btn-content-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    color: #6987ab;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 700;
}

.btn-prev-wrap:hover {
    margin-left: -2px;
    margin-right: 2px;
}

.btn-prev-wrap:hover .btn-prev {
    opacity: 1;
}

.btn-prev-wrap:hover .icon-hover {
    opacity: 1;
}

/*================= Responsive Mode ============*/
@media (max-width: 980px) {
    .btn-next-wrap .btn-next {
        margin-left: 0;
        margin-right: 0;
    }

    .btn-prev-wrap .btn-prev {
        margin-left: 0;
        margin-right: auto;
    }

    .btn-prev-wrap .btn-prev:hover {
        margin-right: auto;
    }

    .btn-next-wrap .btn-content {
        display: none;
    }

    .btn-prev-wrap .btn-content {
        display: none;
    }
}

@media (max-width: 800px) {
    .pagination-arrow {
        padding: 30px 0 30px;
    }
}

/*------------- #COMMENTS --------------*/
.comments, .commentlist {
    overflow: hidden;
    float: none;
    -webkit-box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
    box-shadow: 10px 0 50px rgba(18, 25, 33, 0.1);
    border-radius: 0 0 10px 10px;
    padding: 60px 60px 0 60px;
}

.comments ol li::before, .commentlist ol li::before {
    display: none;
}

.comments.has-not-comments, .commentlist.has-not-comments {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.comments.has-not-comments .leave-reply, .commentlist.has-not-comments .leave-reply {
    padding-top: 60px;
}

.comments__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments__item {
    padding-left: 0;
    margin-top: 30px;
}

.comments__item .children {
    margin: 30px 0 0 60px;
    list-style: none;
    padding: 0;
}

.comments__item .children .leave-reply {
    background-color: transparent;
    margin: 0 -60px;
}

.comments__item .children .leave-reply:before {
    display: none;
}

.comments__item .leave-reply {
    margin: 40px -60px;
}

.comments__article {
    border-bottom: 1px solid #dbe3ec;
    padding-bottom: 20px;
}

.comments__article .comment-content {
    margin-top: 20px;
}

.comments__article .comments__header .comments__author {
    margin-right: 15px;
    color: #516e90;
    font-style: normal;
}

.comments__article .comments__header .comments__author a {
    margin: 0;
    font-size: 16px;
}

.comments__article .comments__header .comments__author .replied {
    font-size: 16px;
    color: #4b5d73;
}

.comments__article .comments__header .comments__time {
    position: relative;
    color: #5c80ac;
    font-size: 14px;
    display: block;
}

.comments__article .comments__avatar img {
    float: left;
    margin-right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    -webkit-box-shadow: 10px 0 30px rgba(81, 116, 141, 0.2);
    box-shadow: 10px 0 30px rgba(81, 116, 141, 0.2);
}

.comments__article .comments__body {
    overflow: hidden;
}

.comments__article .comments__body .reply {
    padding: 8px 14px;
    font-size: 13px;
    border: 2px solid #d6dfeb;
    border-radius: 50px;
    color: #839dbc;
}

.comments__article .comments__body .reply:hover {
    color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 131, 255, 0.3);
    box-shadow: 0 0 5px rgba(0, 131, 255, 0.3);
}

ol.comments li:before,
ol.commentlist li:before {
    display: none;
}

ol.comments li {
    padding-left: 0;
}

ol.comments {
    padding-left: 0;
}

.comments__item-review {
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f3f3;
}

.comments__item-review .ratings {
    color: #ccc;
}

.comments__item-review .ratings .fa-star {
    color: #fcd846;
}

.comments__list-review {
    list-style: none;
    margin: 0 0 73px 0;
    padding: 0;
}

.comments__avatar-review {
    float: left;
    margin-right: 30px;
}

.comments__author-review {
    margin-right: 15px;
    font-size: 18px;
    color: #516e90;
    font-style: normal;
}

.comments__author-review a {
    color: #516e90;
}

.comments__header-review {
    margin-bottom: 15px;
}

.comments__header-review > a {
    position: relative;
    color: #ccc;
    font-size: 14px;
}

.leave-reply {
    background-color: #f5fafe;
    position: relative;
    padding: 60px;
    min-width: 100%;
    margin: 70px -60px 0;
}

.leave-reply:before {
    position: absolute;
    display: inline-block;
    content: '';
    top: -15px;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #f5fafe;
    left: 115px;
}

.leave-reply h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.leave-reply h3 small {
    margin-left: auto;
    font-size: 50%;
    color: #ff3133;
}

.submit-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.submit-block .submit-block-text {
    font-size: 12px;
}

.submit-block .submit-block-text span {
    color: #4d6e96;
}

.comment-form input, .comment-form textarea, .comment-form select, .comment-form .nice-select {
    -webkit-box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
    box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15);
}

.comment-form .error {
  font-size: 14px;
  color: #ff3133;
  margin-bottom: 10px;
  display: block;
}

.comment-form .checkbox {
    margin-bottom: 20px;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .submit-block-text {
        margin-top: 15px;
    }
}

@media (max-width: 980px) {
    .comments__item .children {
        margin-left: 30px;
        padding-left: 0;
    }
}

@media (max-width: 800px) {
    .comments__item .leave-reply {
        padding: 30px;
        margin: 0 -30px;
    }
}

@media (max-width: 768px) {
    .comments__item .children {
        margin-left: 0;
    }

    .comments, .commentlist {
        padding: 20px 20px 0 20px;
    }

    .comments__article .comments__avatar img {
        float: none;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .comments .d-flex--content-inline {
        display: block;
    }

    .comments .d-flex--content-inline * + * {
        margin-top: 10px;
    }

    .comments__item .children .leave-reply {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .submit-block {
        -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;
    }
}

/*------------- #SCREENSHOTS --------------*/
.crumina-screenshots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 80px 160px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.crumina-screenshots .col-item {
    margin: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.crumina-screenshots .col-item > div {
    border-radius: 10px;
    position: relative;
    -webkit-box-shadow: 30px 0 100px rgba(0, 0, 0, 0.2);
    box-shadow: 30px 0 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.crumina-screenshots .col-item > div:hover .overlay-standard {
    opacity: 1;
}

.crumina-screenshots .col-item > div:hover .expand {
    opacity: 1;
}

.crumina-screenshots .col-item > div .expand {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.crumina-screenshots .col-item > div + div {
    margin-top: 60px;
}

.crumina-screenshots img {
    display: block;
    width: 100%;
}

.crumina-screenshots .overlay-standard {
    opacity: 0;
}

.screenshots-item img {
    width: 100%;
}

.screenshots-gallery .gallery-item {
    float: left;
}

.crumina-module.crumina-screenshots {
    margin-left: 0;
}

/*================= Responsive Mode ============*/
@media (max-width: 1200px) {
    .crumina-screenshots {
        margin: 40px 80px;
    }
}

@media (max-width: 768px) {
    .crumina-screenshots {
        display: block;
        margin: 20px 40px;
        text-align: center;
    }

    .col-item + .col-item {
        margin-top: 30px;
    }

    .crumina-screenshots .col-item > div {
        display: inline-block;
    }
}

/*------------- #SKILLS --------------*/
.skills-item {
    margin-bottom: 20px;
}

.skills-item-meter-active {
    position: absolute;
    height: 8px;
    display: inline-block;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.skills-item-meter-active.skills-animate {
    -webkit-animation: skills-animated 1.2s ease-out;
    animation: skills-animated 1.2s ease-out;
}

.skills-item-meter-active.skills-animate-opacity {
    -webkit-animation: skills-animated-opacity .2s ease-out;
    animation: skills-animated-opacity .2s ease-out;
}

.skills-item-meter {
    padding: 0 5px;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(220, 232, 246, 0.9);
    position: relative;
    height: 8px;
}

.skills-item-meter.bg-border-color {
    background-color: #dbe3ec;
}

.skills-item-title {
    font-weight: 700;
    color: #516e90;
}

.skills-item-count {
    float: right;
    font-weight: 700;
    color: #6987ab;
}

.skills-item-info {
    margin-bottom: 5px;
}

@-webkit-keyframes skills-animated {
    0% {
        width: 0;
    }
}

@keyframes skills-animated {
    0% {
        width: 0;
    }
}

@-webkit-keyframes skills-animated-opacity {
    100% {
        opacity: 1;
    }
}

@keyframes skills-animated-opacity {
    100% {
        opacity: 1;
    }
}

/*------------- #CONFERENCE DETAILS --------------*/
.conference-details {
    margin-bottom: 80px;
}

.conference-details .tab-content {
    margin-bottom: 80px;
}

.conference-details-control {
    margin-bottom: 80px;
}

.tabs-with-line .tab-control {
    width: 20%;
    display: inline-block;
}

.tabs-with-line .tab-control a {
    font-size: 18px;
    color: #6987ab;
    text-transform: none;
}

.tabs-with-line .tab-control a:after {
    background-color: #6987ab;
    opacity: 1;
    width: 40%;
    height: 4px;
}

.tabs-with-line .tab-control.active a::after {
    width: 100%;
}

.tabs-with-line .tab-control + .tab-control {
    margin-left: 40px;
}

.schedule-item {
    padding: 60px 40px;
    border-radius: 10px;
    -webkit-box-shadow: 5px 0 20px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 5px 0 20px 0 rgba(18, 25, 33, 0.1);
    margin-bottom: 40px;
}

.schedule-item .title {
    font-size: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dbe3ec;
}

.schedule-item .title span {
    font-size: 18px;
    font-weight: 400;
}

.schedule-item .list-events.col-2 {
    margin-left: -25px;
}

.schedule-item .list-events.col-2 li {
    padding-left: 25px;
    padding-bottom: 15px;
    margin-top: 0;
    vertical-align: top;
}

.conference-details .post-details-shared {
    clear: both;
    float: left;
    width: 100%;
}

.conference-details .kc_row {
    padding: 0;
}

.list-events li + li {
    margin-top: 20px;
}

.list-events a, .list-events div {
    font-size: 14px;
}

.list-events .event-title {
    font-size: 16px;
}

.list-events.col-2 li {
    width: 49%;
    display: inline-block;
}

.list-events.col-2 li + li {
    padding-left: 25px;
    margin-top: 0;
}

.conference-details .tab-content {
    overflow: hidden;
}

/*================= Responsive Mode ============*/
@media (max-width: 980px) {
    .tabs-with-line .tab-control + .tab-control {
        margin-left: 10px;
    }

    .list-events.col-2 li {
        width: 100%;
    }

    .schedule-item {
        padding: 30px 15px;
    }

    .conference-details-control {
        margin-bottom: 40px;
    }
}

@media (max-width: 560px) {
    .tabs-with-line .tab-control a {
        font-size: 13px;
    }
}

@media (max-width: 460px) {
    .tabs-with-line .tab-control {
        display: block;
        margin-bottom: 15px;
    }

    .tabs-with-line .tab-control + .tab-control {
        margin-left: 0;
    }
}

/*------------- #COURSE-DETAILS --------------*/
.course-details {
    border-radius: 10px;
    -webkit-box-shadow: 40px 0 100px 0 rgba(18, 25, 33, 0.07);
    box-shadow: 40px 0 100px 0 rgba(18, 25, 33, 0.07);
    overflow: hidden;
    background-color: #fff;
}

.course-details .post-details-shared {
    border-top: none;
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
}

.course-details .tab-content {
    padding: 60px;
}

.course-details .curriculum-list {
    margin: 0 -60px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.course-details-control {
    background-color: #ecf5fe;
    padding: 30px 60px 0 60px;
}

.course-details-control .tab-control a {
    text-transform: none;
    font-size: 18px;
    color: #6987ab;
    padding: 0 25px 25px 25px;
}

.course-details-control .tab-control a:after {
    height: 4px;
    border-radius: 3px 3px 0 0;
}

/*================= Responsive Mode ============*/
@media (max-width: 1024px) {
    .course-details-control {
        padding: 30px 20px 0 20px;
    }

    .course-details .tab-content {
        padding: 20px;
    }

    .course-details-control .tab-control a {
        padding: 0 10px 25px 10px;
    }
}

@media (max-width: 690px) {
    .course-details-control .tab-control a {
        font-size: 14px;
    }

    .course-details-control .tab-control {
        width: 45%;
    }

    .course-details-control .tab-control + .tab-control {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 360px) {
    .course-details-control .tab-control a {
        font-size: 13px;
        padding: 0 5px 25px 5px;
    }
}

/*------------- #COURSE-FEATURES --------------*/
.course-features-list li {
    padding: 15px 0;
}

.course-features-list li + li {
    border-top: 1px solid #dbe3ec;
}

.course-features-list .utouch-icon {
    height: 15px;
    width: 15px;
    margin-right: 15px;
    position: relative;
    top: 2px;
}

.course-features-list .feature-item {
    width: 50%;
    font-weight: 700;
    color: #516e90;
    float: left;
}

.course-features-list .value {
    width: 50%;
    overflow: hidden;
}

/*================= Responsive Mode ============*/
@media (max-width: 480px) {
    .course-features-list li {
        padding: 10px 0;
        font-size: 14px;
    }

    .course-features-list .utouch-icon {
        margin-right: 5px;
    }
}

/*------------- #REVIEWS --------------*/
.reviews-thumb {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    float: left;
    margin-right: 30px;
    -webkit-box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.2);
    box-shadow: 10px 0 30px 0 rgba(81, 116, 141, 0.2);
    overflow: hidden;
}

.reviews-content {
    overflow: hidden;
    padding-top: 10px;
}

.author-rait-wrap > * {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

.author-rait-wrap > * + * {
    margin-left: 20px;
}

.crumina-reviews-item .title {
    font-size: 16px;
    margin-bottom: 17px;
}

.crumina-reviews-item .author-rait-wrap {
    margin-bottom: 20px;
}

.reviews-list > li {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dbe3ec;
}

.reviews-list > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 560px) {
    .reviews-thumb {
        float: none;
    }
}

@media (max-width: 460px) {
    .reviews-item-name {
        display: block;
    }

    .rait-stars {
        margin-left: 0;
    }
}

/*------------- #RAITING-DETAILS --------------*/
.overall-rating {
    font-size: 90px;
    margin: 0;
}

.raiting-details {
    text-align: center;
}

.raiting-details .title {
    font-size: 16px;
}

.raiting-details p {
    font-size: 14px;
    font-weight: 300;
}

.raiting-details .skills {
    text-align: left;
    margin-top: 60px;
}

/*================= Responsive Mode ============*/
@media (max-width: 560px) {
    .overall-rating {
        font-size: 50px;
    }
}

/*------------- #CURRICULUM LIST  --------------*/
.curriculum-list {
    min-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 40px 0 100px 0 rgba(18, 25, 33, 0.07);
    box-shadow: 40px 0 100px 0 rgba(18, 25, 33, 0.07);
}

.curriculum-list .utouch-icon {
    width: 20px;
    height: 20px;
    margin-right: 30px;
}

.curriculum-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 60px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    border-bottom: 1px solid #dbe3ec;
}

.curriculum-list li:before {
    content: '';
    display: block;
    height: 100%;
    width: 6px;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.curriculum-list li:hover {
    background-color: #ecf5fe;
}

.curriculum-list li:hover:before {
    opacity: 1;
}

.curriculum-list li:last-child {
    border-bottom: none;
}

.curriculum-list .title {
    font-size: 16px;
    margin-right: 30px;
}

.lection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lection-time {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lection-time .utouch-icon {
    fill: #6987ab;
}

/*================= Responsive Mode ============*/
@media (max-width: 1024px) {
    .lection-time {
        margin-left: 20px;
    }
}

@media (max-width: 560px) {
    .course-details .curriculum-list {
        margin: 0 -15px;
    }

    .curriculum-list li {
        padding: 15px;
    }

    .lection {
        -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;
    }

    .course-details .post-details-shared {
        padding: 15px 0;
    }
}

/*------------- #CURRICULUM-EVENT --------------*/
.curriculum-event {
    border-radius: 10px;
    -webkit-box-shadow: 10px 0 10px 0 rgba(18, 25, 33, 0.2);
    box-shadow: 10px 0 10px 0 rgba(18, 25, 33, 0.2);
    border-bottom: 5px solid;
    overflow: hidden;
}

.curriculum-event .icon-text-item {
    color: #6987ab;
    margin-bottom: 20px;
}

.curriculum-event .icon-text-item .utouch-icon {
    fill: #98d5ff;
}

.curriculum-event .author-prof,
.curriculum-event .author-name {
    color: #fff;
}

.curriculum-event .timer {
    font-size: 26px;
}

.curriculum-event.event-big .category-link {
    top: 60px;
    left: 60px;
}

.curriculum-event.event-big .curriculum-event-thumb .curriculum-event-content {
    bottom: 60px;
    left: 60px;
    right: 60px;
    padding: 0;
}

.curriculum-event.event-big .clock {
    margin-top: 50px;
}

.curriculum-event.event-big .curriculum-event-content {
    padding: 60px;
}

.curriculum-event.event-big .timer {
    font-size: 48px;
}

.curriculum-event.event-big.thumb-full-block {
    height: 725px;
}

.curriculum-event.thumb-full-block {
    height: 500px;
}

.curriculum-event.thumb-full-block .curriculum-event-thumb {
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.curriculum-event .curriculum-event-content, .curriculum-event .category-link {
    z-index: 100;
}

.curriculum-event-wrap .curriculum-event {
    margin-bottom: 40px;
}

.curriculum-event-thumb {
    position: relative;
}

.curriculum-event-thumb img {
    display: block;
    width: 100%;
}

.curriculum-event-thumb .category-link {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    left: 40px;
    z-index: 1;
}

.curriculum-event-thumb .curriculum-event-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    padding: 0;
}

.curriculum-event-thumb .curriculum-event-content .title {
    color: #fff;
    margin-bottom: 10px;
}

.curriculum-event-thumb .curriculum-event-content .text {
    color: #fff;
}

.curriculum-event-thumb .curriculum-event-content .text.color.utouch-icon {
    color: #6987ab;
}

.curriculum-event-thumb .curriculum-event-content .clock .text {
    color: #98d5ff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.curriculum-event-content {
    padding: 40px;
}

.curriculum-event-content .title {
    line-height: 1.3;
    display: block;
}

/*================= Responsive Mode ============*/
@media (max-width: 1150px) {
    .curriculum-event.event-big.thumb-full-block {
        height: 400px;
    }

    .curriculum-event.thumb-full-block {
        height: 400px;
    }
}

@media (max-width: 990px) {
    .curriculum-event-thumb .curriculum-event-content,
    .curriculum-event.event-big .curriculum-event-thumb .curriculum-event-content {
        bottom: 15px;
        left: 15px;
        width: 90%;
    }

    .curriculum-event-content,
    .curriculum-event.event-big .curriculum-event-content {
        padding: 20px;
    }

    .curriculum-event .category-link,
    .curriculum-event.event-big .category-link {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 460px) {
    .curriculum-event.event-big .timer {
        font-size: 26px;
    }
}

@media (max-width: 380px) {
    .curriculum-event .clock {
        margin-top: 10px;
    }

    .curriculum-event .timer {
        font-size: 14px;
    }
}

/*------------- #TRIPPLE-IMAGE --------------*/
.crumina-tripple-image {
    text-align: center;
    position: relative;
}

.crumina-tripple-image img {
    display: block;
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    -webkit-box-shadow: 30px 0 100px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 30px 0 100px 0 rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    z-index: 2;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.crumina-tripple-image img:first-of-type {
    position: absolute;
    bottom: 0;
    z-index: 3;
    left: 0;
}

.crumina-tripple-image img:last-of-type {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.crumina-tripple-image:hover img:first-of-type {
    -webkit-transform: perspective(50em) translateZ(0) rotateY(20deg) rotateX(1deg);
    transform: perspective(50em) translateZ(0) rotateY(20deg) rotateX(1deg);
}

.crumina-tripple-image:hover img:last-of-type {
    -webkit-transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(-20deg) rotateX(-2deg);
    transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(-20deg) rotateX(-2deg);
}

.crumina-tripple-image:hover img:nth-child(2) {
    -webkit-transform: perspective(50em) translateZ(0) translateY(0%) rotateY(0deg) rotateX(4deg);
    transform: perspective(50em) translateZ(0) translateY(0%) rotateY(0deg) rotateX(4deg);
}

/*================= Responsive Mode ============*/
@media (max-width: 860px) {
    .crumina-tripple-image img {
        max-width: 33%;
    }
}

/*------------- #SMARTPHONE-VIDEO --------------*/
.crumina-smartphone-video {
    background: url("../img/smartphone1.png") no-repeat 50% 50%;
    background-size: contain;
    text-align: center;
    margin-bottom: 60px;
}

.crumina-smartphone-video .video-thumb {
    overflow: hidden;
    padding: 40px 132px;
}

.crumina-smartphone-video .video-thumb img {
    border-radius: 20px;
    width: auto;
    margin: 0 auto;
}

/*================= Responsive Mode ============*/
@media (max-width: 980px) {
    .crumina-smartphone-video .video-thumb {
        padding: 30px 90px;
    }
}

@media (max-width: 600px) {
    .crumina-smartphone-video .video-thumb {
        padding: 15px 65px;
    }
}

@media (max-width: 420px) {
    .crumina-smartphone-video .video-thumb {
        padding: 15px 45px;
    }
}

/*------------- #SORTING --------------*/
.cat-list-bg-style {
    margin: 0 0 50px 0;
    padding: 0;
    list-style: none;
}

.cat-list-bg-style .cat-list__item {
    display: inline-block;
    margin: 0 5px;
    border-radius: 30px;
    overflow: hidden;
}

.cat-list-bg-style .cat-list__item a {
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    padding: 6px 20px;
    display: block;
    color: #6987ab;
    font-weight: 700;
}

.cat-list-bg-style .cat-list__item a:hover {
    color: #fff;
    -webkit-box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
    box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
}

.cat-list-bg-style .cat-list__item.active {
    -webkit-box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
    box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
}

.cat-list-bg-style .cat-list__item.active a {
    color: #fff;
    -webkit-box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
    box-shadow: 10px 0 30px rgba(0, 131, 255, 0.3);
}

.cat-list-bg-style .cat-list__item.loading a {
    position: relative;
}

.cat-list-bg-style .cat-list__item.loading a .load-more-spinner {
    visibility: visible;
}

.cat-list-bg-style .cat-list__item.loading a span {
    visibility: hidden;
}

.cat-list-bg-style .cat-list__item .load-more-spinner {
    margin: -15px 0 0 -15px;
    visibility: hidden;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    left: 50%;
    top: 50%;
}

.screenshots-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 10px 0 50px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.1);
    margin: 0 auto 40px;
    display: inline-block;
}

.screenshots-item img {
    display: block;
}

.screenshots-item .overlay-standard {
    opacity: 0;
}

.screenshots-item .expand {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.screenshots-item:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-box-shadow: 10px 0 50px rgba(0, 131, 255, 0.5);
    box-shadow: 10px 0 50px rgba(0, 131, 255, 0.5);
}

.screenshots-item:hover .overlay-standard {
    opacity: 1;
}

.screenshots-item:hover .expand {
    opacity: 1;
}

.screenshots-item.style-2 {
    border-radius: 0;
    margin-bottom: 0;
}

.screenshots-item.style-2:hover {
    -webkit-transform: none;
    transform: none;
}

.expand {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.expand .utouch-icon {
    width: 35px;
    height: 35px;
    fill: #fff;
    margin: 0 auto 10px;
    display: block;
}

/*------------- #CHOOSE --------------*/
.choose {
    font-size: 0;
    display: table;
    width: 100%;
    height: 340px;
}

.choose-item {
    width: 33.33%;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 20px 20px 20px 120px;
}

.choose-item:after {
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    right: -40px;
    content: "";
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 170px 0 170px 40px;
    border-right-color: transparent;
    border-left-color: inherit;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.choose-item .title {
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: .2em;
    margin-bottom: 30px;
    color: #fff;
}

.choose-item .text {
    opacity: .5;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.choose-item .btn-next {
    margin-left: -25px;
}

.choose-item .btn-next .utouch-icon {
    fill: #fff;
}

.choose-item .btn-next:hover {
    margin-left: 5px;
}

.choose-item:hover .text {
    opacity: 1;
}

.choose-item:hover .btn-next {
    opacity: 1;
}

.choose-item.bg-orange:after {
    border-color: #EF6517;
}

.choose-item.bg-red:after {
    border-color: #ff3133;
}

.choose-item:last-child:after {
    display: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .choose-item {
        padding-left: 60px;
    }
}

@media (max-width: 860px) {
    .choose-item .title {
        letter-spacing: 0.02em;
    }

    .choose-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .choose {
        display: block;
        height: auto;
    }

    .choose-item {
        width: 100%;
        display: block;
        padding: 20px 30px;
    }
}

@media (max-width: 600px) {
    .choose {
        display: block;
        height: auto;
    }

    .choose-item {
        display: block;
        width: 100%;
    }

    .choose-item:after {
        display: none;
    }
}

/*------------- #DOTTED-MAP --------------*/
.dotted-map {
    position: relative;
}

.dotted-map-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.dotted-map-content .title {
    font-size: 50px;
    margin-bottom: 20px;
}

.dotted-map-content .title span {
    font-size: 36px;
}

/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .dotted-map-content .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .dotted-map-content .title span {
        font-size: 22px;
    }

    .dotted-map-content {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .dotted-map-content {
        top: auto;
        position: relative;
        -webkit-transform: translate(-50%, -100%);
        transform: translate(-50%, -100%);
    }
}

/*------------- #SEND-MESSAGE-POPUP --------------*/
.window-popup {
    opacity: 0;
    background-color: #66b5ff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease, scale .4s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease, scale .4s ease;
    transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease, scale .4s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 50;
}

.window-popup.open {
    opacity: 1;
    z-index: 999999;
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow: auto;
    background-color: #1e242c;
}

.js-message-popup.cd-nav-trigger {
    position: relative;
    z-index: auto;
}

.send-message-popup {
    width: 560px;
    max-width: calc(100% - 60px);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin: 100px auto 0;
    background-color: #fff;
    -webkit-box-shadow: 0px -15px 0px 0px rgba(69, 74, 79, 0.5), 15px -30px 0px 0px rgba(69, 74, 79, 0.5), 30px -45px 0px 0px rgba(69, 74, 79, 0.5), 45px -60px 0px 0px rgba(69, 74, 79, 0.5);
    box-shadow: 0px -15px 0px 0px rgba(69, 74, 79, 0.5), 15px -30px 0px 0px rgba(69, 74, 79, 0.5), 30px -45px 0px 0px rgba(69, 74, 79, 0.5), 45px -60px 0px 0px rgba(69, 74, 79, 0.5);
}

.send-message-popup .contact-form {
    margin-top: 40px;
}

.send-message-popup .wrap-forms {
    text-align: left;
}

body:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #1e242c;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    z-index: -999;
}

body.overlay-enable {
    position: fixed;
    width: 100%;
    height: 100%;
}

body.overlay-enable:before {
    opacity: 1;
    z-index: 500;
}

.popup-close {
    border-radius: 0 0 0 30px;
    background-color: #131a22;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.popup-close .utouch-icon {
    width: 24px;
    height: 24px;
    fill: #6987ab;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup-close.popup-close-round {
    border-radius: 100%;
    right: auto;
    top: 0;
    display: block;
    margin: 50px auto;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.search-popup {
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease, scale .3s ease, background-color .3s ease;
    transition: opacity .3s ease, -webkit-transform .3s ease, scale .3s ease, background-color .3s ease;
    transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease, scale .3s ease, background-color .3s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 50;
    background-color: #66b5ff;
}

.search-popup.open {
    opacity: 1;
    z-index: 999999;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.search--white .popup-close {
    background-color: #eaeef3;
}

.search--white .typeahead__container input:focus {
    color: #516e90;
}

.search--white .search-full-screen .search-standard input[type="search"]:focus {
    color: #516e90;
}

.search--white .typeahead__list > li {
    padding: 15px 60px;
}

.search--white .typeahead__list > li:hover {
    background-color: #ecf5fe;
}

.search--white .typeahead__list > li:hover > a {
    color: #516e90;
}

.search--white.open {
    background: white;
}

.popup-gallery {
    height: 100vh;
    overflow: hidden;
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
}

.popup-gallery.open {
    background: #1e242c;
    z-index: 999;
    opacity: 1;
}

/*
.cd-nav-trigger {
  position: fixed;
  display: inline-block;
}

.cd-nav-trigger {
  z-index: 999;
  !* image replacement *!
}

.cd-nav-trigger .cd-icon {
  !* icon created in CSS *!
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 18px;
  height: 3px;
  background-color: #ffffff;
  z-index: 10;
}

.cd-nav-trigger .cd-icon::before, .cd-nav-trigger .cd-icon:after {
  !* upper and lower lines of the menu icon *!
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  !* Force Hardware Acceleration in WebKit *!
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  !* apply transition to transform property *!
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}

.cd-nav-trigger .cd-icon::before {
  -webkit-transform: translateY(-6px) rotate(0deg);
  -moz-transform: translateY(-6px) rotate(0deg);
  -ms-transform: translateY(-6px) rotate(0deg);
  -o-transform: translateY(-6px) rotate(0deg);
  transform: translateY(-6px) rotate(0deg);
}

.cd-nav-trigger .cd-icon::after {
  -webkit-transform: translateY(6px) rotate(0deg);
  -moz-transform: translateY(6px) rotate(0deg);
  -ms-transform: translateY(6px) rotate(0deg);
  -o-transform: translateY(6px) rotate(0deg);
  transform: translateY(6px) rotate(0deg);
}

.cd-nav-trigger::before, .cd-nav-trigger::after {
  !* 2 rounded colored backgrounds for the menu icon *!
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  !* Force Hardware Acceleration in WebKit *!
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
}

.cd-nav-trigger::before {
  background-color: #091d23;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cd-nav-trigger::after {
  background-color: #ffb441;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}

.cd-nav-trigger.close-nav::before {
  !* user clicks on the .cd-nav-trigger element - 1st rounded background disappears *!
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.cd-nav-trigger.close-nav::after {
  !* user clicks on the .cd-nav-trigger element - 2nd rounded background appears *!
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cd-nav-trigger.close-nav .cd-icon {
  !* user clicks on the .cd-nav-trigger element - transform the icon *!
  background-color: rgba(255, 255, 255, 0);
}

.cd-nav-trigger.close-nav .cd-icon::before, .cd-nav-trigger.close-nav .cd-icon::after {
  background-color: white;
}

.cd-nav-trigger.close-nav .cd-icon::before {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.cd-nav-trigger.close-nav .cd-icon::after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.cd-overlay-nav, .cd-overlay-content {
  !* containers of the 2 main rounded backgrounds - these containers are used to position the rounded bgs behind the menu icon *!
  position: fixed;
  top: 0;
  right: 0;
  height: 4px;
  width: 4px;
  -webkit-transform: translateX(-20px) translateY(20px);
  -moz-transform: translateX(-20px) translateY(20px);
  -ms-transform: translateX(-20px) translateY(20px);
  -o-transform: translateX(-20px) translateY(20px);
  transform: translateX(-20px) translateY(20px);
}

.cd-overlay-nav span, .cd-overlay-content span {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  !* Force Hardware Acceleration in WebKit *!
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.cd-overlay-nav.is-hidden, .cd-overlay-content.is-hidden {
  !* background fades out at the end of the animation *!
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-overlay-nav {
  !* main rounded colored bg 1 *!
  z-index: 21;
}

.cd-overlay-nav span {
  background-color: rgba(30, 36, 44, 1);
}

.cd-overlay-content {
  !* main rounded colored bg 2 *!
  z-index: 9999999;
}

.cd-overlay-content span {
  z-index: 99;
  background-color: lighten($primary-color, 20%);
}
*/
/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .send-message-popup {
        padding: 30px;
    }

    .popup-close {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 0 0 0 15px;
    }

    .popup-close .icon {
        width: 16px;
        height: 16px;
    }
}

/*------------- #COUNTING-DOWN --------------*/
.counting-down {
    border-radius: 10px;
    -webkit-box-shadow: 10px 0 50px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 10px 0 50px 0 rgba(18, 25, 33, 0.1);
    overflow: hidden;
}

.counting-down > * {
    padding: 40px;
}

.counting-down .timer {
    font-size: 38px;
}

.counting-header {
    background-color: #d2e9f7;
    position: relative;
}

.counting-header .utouch-icon {
    fill: #B5CCE0;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 25px;
    right: -75px;
}

.counting-header .clock {
    margin-top: 20px;
}

.counting-date {
    background-color: #ecf5fe;
}

.counting-date .utouch-icon {
    fill: #98d5ff;
}

.counting-date .text {
    color: #6987ab;
}

.counting-footer {
    background-color: #fff;
}

.counting-footer .author-prof {
    color: #516e90;
}

.counting-footer .author-name {
    color: #6987ab;
}

.counting-footer .author-block {
    margin-bottom: 40px;
}

/*================= Responsive Mode ============*/
@media (max-width: 980px) {
    .counting-down .timer {
        font-size: 16px;
    }

    .counting-down > * {
        padding: 15px;
    }

    .counting-header .utouch-icon {
        max-height: 50%;
    }
}

/*------------- #SKEW-ROWS --------------*/
.section-bg-skew {
    position: relative;
    background-size: cover;
}

.section-bg-skew > .container {
    position: relative;
    z-index: 2;
}

.section-bg-skew:before, .section-bg-skew:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    max-width: 100%;
    left: 0;
}

.section-bg-skew:before {
    height: 170px;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(49.9%, #fff), color-stop(50%, transparent));
    background: linear-gradient(to right bottom, #fff 49.9%, transparent 50%);
    top: 0;
}

.section-bg-skew:after {
    height: 170px;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(49.9%, transparent), color-stop(50%, #fff));
    background: linear-gradient(to right bottom, transparent 49.9%, #fff 50%);
    bottom: 0;
}

/*------------- #Rounded-ROWS --------------*/
.section-bg-curved {
    position: relative;
    background-size: cover;
}

.section-bg-curved > .container {
    position: relative;
    z-index: 2;
}

.section-bg-curved:before, .section-bg-curved:after {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% + 10px);
}

.section-bg-curved:before {
    top: -10px;
    left: -5px;
}

.section-bg-curved:after {
    bottom: -10px;
    left: -5px;
}

.bg-rounded-style1:before {
    content: url("../svg/01-wave-rotate-180.svg");
}

.bg-rounded-style1:after {
    content: url("../svg/01-wave.svg");
}

.bg-rounded-style2:before {
    content: url("../svg/02-wave.svg");
}

.bg-rounded-style2:after {
    content: url("../svg/03-wave.svg");
}

.bg-rounded-style3:before {
    content: url("../svg/04-wave.svg");
}

.bg-rounded-style3:after {
    content: url("../svg/05-wave.svg");
}

.bg-rounded-style4:before {
    content: url("../svg/06-wave.svg");
}

.bg-rounded-style4:after {
    content: url("../svg/06-wave-inverted.svg");
}

.not-top-element:before {
    display: none;
}

.not-bottom-element:after {
    display: none;
}

/*================= Responsive Mode ============*/
@media (max-width: 800px) {
    .bg-skew > * {
        padding: 0 70px;
    }

    .bg-skew.medium-padding120 {
        padding: 60px 0;
    }

    .bg-skew.pt180 {
        padding-top: 90px;
    }

    .bg-skew.pt120 {
        padding-top: 60px;
    }

    .negative-margin-bottom80 {
        margin-bottom: auto;
    }

    body.skew-rows .bg-skew:last-of-type {
        margin-bottom: -40px;
    }

    .section-bg-skew::before {
        border-bottom-width: 90px;
    }

    .section-bg-skew::after {
        border-bottom-width: 90px;
    }
}

/*------------- #CRUMINA-DOUBLE-IMAGE --------------*/
.crumina-double-image {
    text-align: center;
    position: relative;
}

.crumina-double-image img {
    display: block;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    -webkit-box-shadow: 30px 0 100px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 30px 0 100px 0 rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    z-index: 2;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.crumina-double-image img:first-child {
    position: relative;
    z-index: 2;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    -webkit-transform: translateZ(0) translate(0%, 0%) rotateY(40deg) rotateX(0deg);
    transform: translateZ(0) translate(0%, 0%) rotateY(40deg) rotateX(0deg);
}

.crumina-double-image img:last-child {
    -webkit-box-shadow: none;
    box-shadow: none;
    position: absolute;
    bottom: 0;
    max-height: 100%;
    z-index: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    -webkit-transform: translateZ(0) translate(0%, 0%) rotateY(0deg) rotateX(0deg);
    transform: translateZ(0) translate(0%, 0%) rotateY(0deg) rotateX(0deg);
}

.crumina-double-image:hover img:first-child {
    -webkit-transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(-20deg) rotateX(1deg);
    transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(-20deg) rotateX(1deg);
}

.crumina-double-image:hover img:last-child {
    -webkit-transform: perspective(50em) translateZ(0) translate(-20%, 0%) rotateY(0deg) rotateX(-2deg);
    transform: perspective(50em) translateZ(0) translate(-20%, 0%) rotateY(0deg) rotateX(-2deg);
}

/*------------- #SWITCHER --------------*/
.tgl {
    position: relative;
    outline: 0;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 0 5px 0;
}

.tgl, .tgl:after, .tgl:before,
.tgl *, .tgl *:after, .tgl *:before,
.tgl + .tgl-btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection,
.tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection,
.tgl + .tgl-btn::-moz-selection {
    background: none;
}

.tgl::selection, .tgl:after::selection, .tgl:before::selection,
.tgl *::selection, .tgl *:after::selection, .tgl *:before::selection,
.tgl + .tgl-btn::selection {
    background: none;
}

.tgl span {
    position: relative;
    display: block;
    font-weight: normal;
    text-align: center;
    border-radius: 2em;
    padding: 1.15em 1em;
    -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2), 0 2px 0 rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2), 0 2px 0 rgba(255, 255, 255, 0.7);
    -webkit-transition: color 0.3s ease, padding 0.3s ease-in-out, background 0.3s ease-in-out;
    transition: color 0.3s ease, padding 0.3s ease-in-out, background 0.3s ease-in-out;
}

.tgl span:before {
    position: relative;
    display: block;
    line-height: 1.3em;
    padding: 0 0.2em;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.tgl span:after {
    position: absolute;
    display: block;
    content: '';
    border-radius: 2em;
    width: 2.8em;
    height: 2.8em;
    top: 0.35em;
    margin-left: -1.45em;
    background: #FFFFFF;
    -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 0.97), background 0.3s ease-in-out;
    transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 0.97), background 0.3s ease-in-out;
}

.tgl input[type="checkbox"] {
    display: none !important;
}

.tgl input[type="checkbox"]:not(:checked) + span {
    background: #0083ff;
    color: #FFFFFF;
    padding-left: 3.7em;
    padding-right: 1.5em;
    -webkit-box-shadow: 0 0 5px rgba(0, 131, 255, 0.3);
    box-shadow: 0 0 5px rgba(0, 131, 255, 0.3);
}

.tgl input[type="checkbox"]:not(:checked) + span:before {
    content: attr(data-off);
    color: #FFFFFF;
}

.tgl input[type="checkbox"]:not(:checked) + span:after {
    background: #FFFFFF;
    left: 1.7em;
}

.tgl input[type="checkbox"]:checked + span {
    background: #ff3133;
    color: #FFFFFF;
    padding-left: 1.5em;
    padding-right: 3.7em;
    -webkit-box-shadow: 0 0 5px rgba(248, 48, 50, 0.3);
    box-shadow: 0 0 5px rgba(248, 48, 50, 0.3);
}

.tgl input[type="checkbox"]:checked + span:before {
    content: attr(data-on);
}

.tgl input[type="checkbox"]:checked + span:after {
    background: #FFFFFF;
    left: 100%;
    margin-left: -3.1em;
}

.tgl input[type="checkbox"]:disabled, .tgl input[type="checkbox"]:disabled + span, .tgl input[type="checkbox"]:-moz-read-only, .tgl input[type="checkbox"]:-moz-read-only + span {
    cursor: not-allowed;
}

.tgl input[type="checkbox"]:disabled, .tgl input[type="checkbox"]:disabled + span, .tgl input[type="checkbox"]:read-only, .tgl input[type="checkbox"]:read-only + span {
    cursor: not-allowed;
}

.tgl-gray input[type="checkbox"]:not(:checked) + span {
    background: #e3e3e3;
    color: #999999;
}

.tgl-gray input[type="checkbox"]:not(:checked) + span:before {
    color: #999999;
}

.tgl-gray input[type="checkbox"]:not(:checked) + span:after {
    background: white;
}

.tgl-inline {
    display: inline-block !important;
    vertical-align: top;
}

.tgl-inline.tgl {
    font-size: 16px;
}

.tgl-inline.tgl span {
    min-width: 50px;
}

.tgl-inline.tgl span:before {
    line-height: 1.4em;
    padding-left: 0.4em;
    padding-right: 0.4em;
}

.tgl-inline-label {
    display: inline-block !important;
    vertical-align: top;
    line-height: 26px;
}

.tgl--text-both input[type="checkbox"]:checked + span::before {
    left: 140%;
    color: #ff3133;
}

.tgl--text-both input[type="checkbox"]:not(:checked) + span::before {
    left: -140%;
}

.tgl--text-both input[type="checkbox"]:not(:checked) + span,
.tgl--text-both input[type="checkbox"]:checked + span {
    padding-left: .5em;
    padding-right: .5em;
}

.typeahead__container {
    padding-bottom: 10px;
    /**
     * Restore the font weight unset by the previous rule.
     */
    /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
    /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
    /**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
    /**
     * Remove the inner border and padding in Firefox.
     */
    /**
     * Restore the focus styles unset by the previous rule.
     */
    /**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
    /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
    /**
     * Remove the default vertical scrollbar in IE.
     */
    /**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
    /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
    /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
    /**
     * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
     */
    /**
     * Correct the text style of placeholders in Chrome, Edge, and Safari.
     */
    /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
}

.typeahead__container optgroup {
    font-weight: bold;
}

.typeahead__container button,
.typeahead__container input {
    /* 1 */
    overflow: visible;
}

.typeahead__container button,
.typeahead__container select {
    /* 1 */
    text-transform: none;
}

.typeahead__container button,
.typeahead__container html [type="button"],
.typeahead__container [type="reset"],
.typeahead__container [type="submit"] {
    -webkit-appearance: button;
    /* 2 */
}

.typeahead__container button::-moz-focus-inner,
.typeahead__container [type="button"]::-moz-focus-inner,
.typeahead__container [type="reset"]::-moz-focus-inner,
.typeahead__container [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.typeahead__container button:-moz-focusring,
.typeahead__container [type="button"]:-moz-focusring,
.typeahead__container [type="reset"]:-moz-focusring,
.typeahead__container [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

.typeahead__container fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

.typeahead__container legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

.typeahead__container textarea {
    overflow: auto;
}

.typeahead__container [type="checkbox"],
.typeahead__container [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

.typeahead__container [type="number"]::-webkit-inner-spin-button,
.typeahead__container [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

.typeahead__container [type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 4px solid #5c6c7a;
    border-radius: 0;
}

.typeahead__container [type="search"]::-webkit-search-cancel-button,
.typeahead__container [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.typeahead__container ::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

.typeahead__container ::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

.typeahead__container [type="submit"] {
    background-color: transparent;
    padding: 0;
}

.typeahead__container [type="submit"] .utouch-icon {
    width: 26px;
    height: 26px;
    fill: #6987ab;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.typeahead__container .close {
    padding: 0;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 25px;
    cursor: pointer;
    z-index: 5;
}

.typeahead__container .close .utouch-icon {
    width: 20px;
    height: 20px;
    fill: #6987ab;
}

.typeahead__container input {
    font-size: 20px;
}

.typeahead__container input:focus {
    color: #fff;
}

.typeahead__container {
    position: relative;
}

.typeahead__container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

.typeahead__query {
    position: relative;
    z-index: 2;
    width: 100%;
}

.typeahead__filter {
    position: relative;
}

.typeahead__filter button {
    min-width: 100%;
    white-space: nowrap;
}

.typeahead__filter button:after {
    display: inline-block;
    margin-left: 4px;
    width: 0;
    height: 0;
    vertical-align: -2px;
    content: "";
    border: 4px solid;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.typeahead__field {
    font-size: 0;
    position: relative;
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.typeahead__field > * {
    display: table-cell;
    vertical-align: top;
}

.typeahead__button {
    position: absolute;
    left: 0;
    top: 20px;
}

.typeahead__field input {
    display: block;
    width: 100%;
    background: transparent;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.typeahead__field input[type="search"],
.typeahead__field input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.typeahead__field input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.typeahead__container.hint .typeahead__field input {
    background: transparent;
}

.typeahead__container.hint .typeahead__field input:last-child, .typeahead__hint {
    background: #fff;
}

.typeahead__container button {
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-color: #fff;
}

.typeahead__container input.disabled,
.typeahead__container input[disabled],
.typeahead__container button.disabled,
.typeahead__container button[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fff;
}

.typeahead__filter, .typeahead__button {
    z-index: 1;
}

.typeahead__filter button, .typeahead__button button {
    margin-left: -1px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.typeahead__filter:hover, .typeahead__filter:active, .typeahead__filter:focus, .typeahead__button:hover, .typeahead__button:active, .typeahead__button:focus {
    z-index: 1001;
}

.typeahead__filter:hover button:focus, .typeahead__filter:hover button:active, .typeahead__filter:active button:focus, .typeahead__filter:active button:active, .typeahead__filter:focus button:focus, .typeahead__filter:focus button:active, .typeahead__button:hover button:focus, .typeahead__button:hover button:active, .typeahead__button:active button:focus, .typeahead__button:active button:active, .typeahead__button:focus button:focus, .typeahead__button:focus button:active {
    z-index: 1001;
}

.typeahead__filter + .typeahead__button button {
    margin-left: -2px;
}

.typeahead__container.filter .typeahead__filter {
    z-index: 1001;
}

.typeahead__list, .typeahead__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 100%;
    min-width: 160px;
    margin: 2px 0 0;
    list-style: none;
    text-align: left;
    background-clip: padding-box;
}

.typeahead__result.detached .typeahead__list {
    position: relative;
    z-index: 1041;
    top: initial;
    left: initial;
}

.typeahead__dropdown {
    right: 0;
    left: initial;
    z-index: 1001;
}

.typeahead__list > li {
    position: relative;
    padding: 10px 60px;
    border-radius: 5px;
    display: block;
}

.typeahead__list > li:hover {
    background-color: #232b32;
}

.typeahead__list > li:hover > a {
    color: #fff;
}

.typeahead__list > li:first-child {
    border-top: none;
}

.typeahead__list > li > a,
.typeahead__dropdown > li > a {
    display: block;
    clear: both;
    color: #5c6c7a;
    text-decoration: none;
}

.typeahead__list.empty > li > a {
    cursor: default;
}

.typeahead__list.empty > li > a:hover,
.typeahead__list.empty > li > a:focus,
.typeahead__list.empty > li.active > a {
    background-color: transparent;
}

.typeahead__list > li.typeahead__group {
    font-weight: bold;
}

.typeahead__list > li.typeahead__group > a,
.typeahead__list > li.typeahead__group > a:hover,
.typeahead__list > li.typeahead__group > a:focus,
.typeahead__list > li.typeahead__group.active > a {
    cursor: default;
}

.typeahead__container.result .typeahead__list,
.typeahead__container.filter .typeahead__dropdown,
.typeahead__container.hint .typeahead__hint,
.typeahead__container.backdrop + .typeahead__backdrop {
    display: block !important;
}

.typeahead__container .typeahead__list,
.typeahead__container .typeahead__dropdown,
.typeahead__container .typeahead__hint,
.typeahead__container + .typeahead__backdrop {
    display: none !important;
}

.typeahead__container.loading .typeahead__query:before, .typeahead__container.loading .typeahead__query:after {
    -webkit-transition: all 0s linear, opacity 0.2s ease;
    transition: all 0s linear, opacity 0.2s ease;
    position: absolute;
    z-index: 3;
    content: '';
    top: 50%;
    right: .55em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 500rem;
    border-style: solid;
    border-width: .1em;
}

.typeahead__container.loading .typeahead__query:before {
    border-color: rgba(0, 0, 0, 0.35);
}

.typeahead__container.loading .typeahead__query:after {
    -webkit-animation: button-spin 0.6s linear;
    animation: button-spin 0.6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-color: #fff transparent transparent;
    -webkit-box-shadow: 0 0 0 1px transparent;
    box-shadow: 0 0 0 1px transparent;
}

@-webkit-keyframes button-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes button-spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*================= Responsive Mode ============*/
@media (max-width: 768px) {
    .typeahead__container input {
        font-size: 14px;
    }

    .typeahead__container [type="submit"] .utouch-icon {
        width: 16px;
        height: 16px;
    }

    .typeahead__container .close .utouch-icon {
        width: 16px;
        height: 16px;
    }

    .typeahead__container [type="search"] {
        padding-bottom: 10px;
    }

    .typeahead__container .close {
        top: 22px;
    }
}

/*------------- #POPUP-SEARCH --------------*/
.search-full-screen {
    width: 60%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
}

.search-full-screen .search-standard {
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transform: none;
    transform: none;
    right: auto;
}

.search-full-screen .search-standard input[type="search"] {
    background: transparent;
    outline-offset: -2px;
    margin-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 4px solid #5c6c7a;
    border-radius: 0;
    padding: 17px 50px;
    font-size: 20px;
}

.search-full-screen .search-standard input[type="search"]:focus {
    color: #fff;
}

.search-full-screen .search-standard .utouch-icon {
    width: 29px;
    height: 29px;
}

.search-full-screen .search-standard button[type="submit"] {
    left: 0;
    top: 17px;
    padding: 0;
}

.search-full-screen .search-standard .close {
    right: 0;
}

.search-standard {
    width: 100%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-box-shadow: 0 0 20px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 0 0 20px 0 rgba(18, 25, 33, 0.1);
    border-radius: 10px;
    -webkit-transition: opacity .35s ease;
    transition: opacity .35s ease;
    opacity: 0;
    visibility: hidden;
}

.search-standard input[type="search"] {
    border: none;
    background-color: #fff;
    font-size: 16px;
    padding: 17px 80px;
    border-radius: 10px;
    margin: 0;
}

.search-standard input[type="search"]:focus {
    color: #516e90;
}

.search-standard .form-icon {
    position: absolute;
}

.search-standard .utouch-icon {
    height: 32px;
    width: 32px;
}

.search-standard button[type="submit"] {
    background: none;
    left: 20px;
    top: 17px;
}

.search-standard .utouch-icon-search {
    top: auto;
}

.search-standard .utouch-icon {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 27px;
    width: 27px;
    padding: 2px;
    fill: #839dbc;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    cursor: pointer;
}

.search-standard .close {
    right: 20px;
    top: 18px;
}

.search-standard .typeahead__container {
    padding-bottom: 0;
}

.search-standard .typeahead__list {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
    padding: 15px 0;
    -webkit-box-shadow: 0 15px 20px 0 rgba(18, 25, 33, 0.1);
    box-shadow: 0 15px 20px 0 rgba(18, 25, 33, 0.1);
}

.search-standard .typeahead__list:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 80%;
    height: 1px;
    background-color: #ecf5fe;
}

.search-standard .typeahead__list > li {
    padding: 10px 30px;
}

.search-standard .typeahead__list > li:hover {
    background-color: #ecf5fe;
}

.search-standard .typeahead__list > li:hover > a {
    color: #516e90;
}

.search-standard.open {
    opacity: 1;
    visibility: visible;
}

.search--dark input[type="search"] {
    background-color: #1b232d;
}

.search--dark input[type="search"]:focus {
    color: #fff;
}

.search--dark input[type="search"]::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #6987ab;
    opacity: 1;
}

.search--dark input[type="search"]:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #6987ab;
    opacity: 1;
}

.search--dark input[type="search"]::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #6987ab;
    opacity: 1;
}

.search--dark input[type="search"]:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #6987ab;
    opacity: 1;
}

.search--dark.open {
    background-color: #1e242c;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .search-standard {
        right: 0;
    }
}

@media (max-width: 940px) {
    .search-standard {
        top: 80%;
        right: 50%;
        -webkit-transform: translate(50%, -100%);
        transform: translate(50%, -100%);
    }
}

@media (max-width: 768px) {
    .search-full-screen {
        width: 90%;
    }

    .search-full-screen .search-standard input[type="search"] {
        font-size: 13px;
        padding-bottom: 10px;
    }

    .search-full-screen .search-standard .utouch-icon {
        width: 22px;
        height: 22px;
    }

    .popup-close .utouch-icon {
        width: 16px;
        height: 16px;
    }
}

/*------------- #PIE-CHARTS --------------*/
.chart-js canvas {
    margin-bottom: 60px;
    max-width: 100%;
}

.chart-js .points {
    padding-left: 50px;
}

@media (max-width: 1024px) {
    .chart-js .points {
        padding-left: 0;
    }
}

.chart-js .points .points-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.chart-js .points .points-item-count {
    font-size: 14px;
    color: #516e90;
    display: inline-block;
}

.chart-js .points .point-sircle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border-color: transparent;
    margin-right: 20px;
    float: left;
}

/*------------- #PIE-CHARTS --------------*/
@media (max-width: 570px) {
    .crumina-pie-chart-item {
        margin-bottom: 30px;
    }
}

.pie-chart {
    width: 170px;
    height: 170px;
    position: relative;
    border-radius: 100%;
    border: 5px solid #dbe3ec;
    float: left;
    margin-right: 30px;
}

@media (max-width: 980px) {
    .pie-chart {
        float: none;
        margin-bottom: 30px;
    }
}

.pie-chart:after {
    content: '';
    display: block;
    width: 145px;
    height: 145px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 100%;
    border: 5px solid #dbe3ec;
    z-index: -1;
}

.pie-chart .content {
    font-size: 40px;
    color: #516e90;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.pie-chart img, .pie-chart .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 60px;
    line-height: 1;
}

.pie-chart-content {
    overflow: hidden;
}

.pie-chart-content a {
    color: #4b5d73;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
}

.pie-chart-content a i {
    margin-left: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 12px;
}

.pie-chart-content-text {
    margin-bottom: 20px;
}

.pie-chart-content-title {
    line-height: 1.2;
    margin-bottom: 15px;
}

.pie-chart canvas {
    max-width: 100%;
}

/*------------- #SHOP-STYLES --------------*/
/*------------- #CART --------------*/
body.woocommerce-cart .entry-header {
    text-align: center;
    margin-bottom: 60px;
}

.woocommerce .cart-main table .cart_item td {
    padding: 40px 0;
    overflow: hidden;
    border: none;
}

.woocommerce .cart-main table .cart_item td:first-child {
    padding-left: 60px;
}

@media (max-width: 1024px) {
    .woocommerce .cart-main table .cart_item td:first-child {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .woocommerce .cart-main table .cart_item td {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .woocommerce .cart-main table .cart_item td {
        padding: 10px;
    }
}

.cart-main .cart_item .product-quantity .quantity .quantity-minus,
.cart-main .cart_item .product-quantity .quantity .quantity-plus {
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    color: #839dbc;
}

.content-main-sidebar .cart-main .cart_item .product-quantity .quantity .quantity-minus,
.content-main-sidebar .cart-main .cart_item .product-quantity .quantity .quantity-plus {
    display: none;
}

.content-main-sidebar .cart-main .cart_item .product-quantity .quantity .qty {
    float: none;
    margin: 0 10px;
}

.content-main-sidebar .cart-main .actions .coupon {
    margin-bottom: 30px;
}

.content-main-sidebar .cart-main .actions input.btn {
    float: left;
}

.content-main-sidebar .woocommerce .checkout.woocommerce-checkout #customer_details .col-1,
.content-main-sidebar .woocommerce .checkout.woocommerce-checkout #customer_details .col-2 {
    width: 100%;
}

@media (max-width: 1024px) {
    .content-main-sidebar .products ul li,
    .content-main-sidebar ul.products li {
        width: 50%;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .woocommerce table.cart.shop_table img {
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .cart-main .actions .coupon input {
        padding: 0 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar .cart-main .actions .coupon input {
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .content-main-sidebar .cart-main .actions .coupon input {
        border-radius: 50px 0 0 50px;
    }
}

@media (max-width: 460px) {
    .content-main-sidebar .cart-main .actions .coupon input {
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .content-main-sidebar .cart-main .actions .coupon .btn-medium.btn--breez {
        border-radius: 0 50px 50px 0;
    }
}

@media (max-width: 460px) {
    .content-main-sidebar .cart-main .actions .coupon .btn-medium.btn--breez {
        margin-bottom: 30px;
        border-radius: 50px;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .cart-main .actions .coupon {
        margin-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .cart_item .product-remove .product-del {
        padding: 0 20px;
    }
}

.content-main-sidebar .woocommerce .cart-product-wrap-title-main tr > th {
    font-size: 13px;
}

@media (max-width: 980px) {
    .content-main-sidebar .woocommerce .cart-product-wrap-title-main tr > th {
        padding-left: 30px;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar .cart-total.cart_totals {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar .woocommerce .cart-main table.shop_table .actions {
        padding: 30px;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar .woocommerce .checkout_coupon.coupon input {
        margin-bottom: 30px;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar #billing_first_name_field,
    .content-main-sidebar #billing_last_name_field,
    .content-main-sidebar #billing_email_field,
    .content-main-sidebar #billing_phone_field,
    .content-main-sidebar #billing_state_field,
    .content-main-sidebar #billing_postcode_field {
        width: 100%;
    }
}

.content-main-sidebar .woocommerce-checkout #payment {
    padding: 30px;
}

@media (max-width: 980px) {
    .content-main-sidebar .woocommerce table .cart_item td {
        padding-left: 30px;
    }
}

@media (max-width: 980px) {
    .content-main-sidebar .woocommerce table.shop_table tfoot th {
        padding-left: 30px;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .product-details .product-details-info {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .content-main-sidebar .row.product-details > div {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .content-main-sidebar .woocommerce table.shop_table tfoot td {
        padding-left: 0;
    }
}

#billing_email_field {
    clear: both;
}

.product-details-info .nice-select {
    margin-bottom: 0;
}

.product-details-info form.cart .variations label {
    line-height: 64px;
    vertical-align: middle;
    color: #273f5b;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    line-height: 1.5;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #dbe3ec;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: transparent;
    -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
}

.woocommerce .cart-main table.shop_table .actions {
    padding: 40px 70px;
    background-color: #dfe8f2;
    border: none;
}

@media (max-width: 980px) {
    .woocommerce .cart-main table.shop_table .actions {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .woocommerce ul.products li {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .woocommerce ul.products[class*="columns-"] li.product,
    .woocommerce-page ul.products[class*="columns-"] li.product {
        width: 100%;
        float: none;
    }
}

.woocommerce ul.products li.product a img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto 1em;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-height: 300px;
}

.woocommerce ul.products li.product a.btn {
    max-width: 100%;
    text-transform: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}

.woocommerce ul.products li.product a.btn i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-left: 10px;
}

.cart-main .actions input.btn {
    width: auto;
}

.woocommerce table.shop_table.cart {
    margin: 0;
    border: none;
}

.woocommerce ul.products li.product .price {
    margin-bottom: 1.5em;
    font-size: 20px;
    font-weight: 700;
    color: #F89101;
}

.woocommerce .cart-total table.shop_table {
    border: none;
}

.woocommerce .cart-total table.shop_table .order-total th,
.woocommerce .cart-total table.shop_table .order-total td {
    border: none;
}

.cart tbody .cart_item {
    position: relative;
}

.cart tbody .cart_item:after {
    content: '';
    display: block;
    width: 95%;
    height: 1px;
    background-color: #dbe3ec;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.cart tbody .cart_item:last-child:after {
    display: none;
}

.woocommerce .cart-main tbody a.remove {
    color: #839dbc !important;
}

.woocommerce .cart-main tbody a.remove:hover {
    color: #fff !important;
}

.cart-main {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 10px 0 60px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 0 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.cart-main tbody {
    background-color: #fff;
}

.cart-main tbody .cart_item {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.cart-main tbody .cart_item:after {
    content: '';
    display: block;
    width: 90%;
    height: 1px;
    background-color: #dbe3ec;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.cart-main tbody .cart_item:hover {
    -webkit-box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.cart-main tbody .cart_item:hover a.remove {
    color: red !important;
}

.cart-main tbody .cart_item:hover a.remove:hover {
    color: #fff !important;
}

.cart-main tbody .cart_item:hover:after {
    opacity: 0;
}

.cart-main tbody .cart_item:hover .cart-product-title {
    color: #0083ff;
}

.cart-main .actions {
    padding: 40px 70px;
    background-color: #f1f3f3;
    overflow: hidden;
}

@media (max-width: 570px) {
    .cart-main .actions {
        padding: 30px;
    }
}

.cart-main .actions .coupon {
    float: left;
}

@media (max-width: 1024px) {
    .cart-main .actions .coupon {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .cart-main .actions .coupon {
        margin-bottom: 0;
    }
}

.cart-main .actions .coupon input {
    width: auto;
    border-radius: 50px 0 0 50px;
    background-color: #fff;
    padding: 0 40px;
    float: left;
    margin-bottom: 0;
    line-height: 60px;
    height: 60px;
}

@media (max-width: 480px) {
    .cart-main .actions .coupon input {
        border-radius: 50px;
        margin-bottom: 30px;
    }
}

.cart-main .actions .coupon .btn-medium {
    border-radius: 0 50px 50px 0;
    float: left;
}

@media (max-width: 480px) {
    .cart-main .actions .coupon .btn-medium {
        border-radius: 50px;
        margin-bottom: 30px;
    }
}

.cart-main .actions .btn {
    float: right;
}

@media (max-width: 1024px) {
    .cart-main .actions .btn {
        float: left;
    }
}

.cart_item td {
    padding: 40px 0;
}

.cart_item .cart-product-title {
    color: #273f5b;
    font-size: 22px;
}

.cart_item .product-price .price {
    font-size: 18px;
    color: #273f5b;
}

.cart_item .product-remove .product-del {
    position: relative;
    font-size: 24px;
    cursor: pointer;
    padding: 0 55px;
    color: #ed1c24;
    display: block;
}

@media (max-width: 768px) {
    .cart_item .product-remove .product-del {
        padding: 0 15px;
    }
}

@media (max-width: 460px) {
    .cart_item .product-remove .product-del {
        padding: 0 7px;
        font-size: 14px;
    }
}

.cart_item .product-remove .product-del:hover {
    color: #ed1c24 !important;
    background: none;
}

.cart_item .product-thumbnail img {
    float: left;
    margin-right: 40px;
    width: auto;
}

@media (max-width: 460px) {
    .cart_item .product-thumbnail img {
        margin-right: 0;
    }
}

.cart_item .cart-product-content {
    text-align: left;
}

.cart_item .cart-product-content .cart-author {
    margin-bottom: 5px;
}

.cart_item .product-quantity .quantity {
    overflow: hidden;
    -webkit-box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    display: inline-block;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cart_item .product-quantity .quantity {
        float: right;
    }
}

.cart_item .product-quantity .quantity .quantity-minus {
    display: block;
    float: left;
    padding-left: 28px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

@media (max-width: 980px) {
    .cart_item .product-quantity .quantity .quantity-minus {
        font-size: 20px;
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .cart_item .product-quantity .quantity .quantity-minus {
        font-size: 14px;
    }
}

.cart_item .product-quantity .quantity .quantity-minus:hover {
    color: #0083ff;
}

.cart_item .product-quantity .quantity input {
    max-width: 70px;
    float: left;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    line-height: 60px;
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

@media (max-width: 980px) {
    .cart_item .product-quantity .quantity input {
        font-size: 18px;
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .cart_item .product-quantity .quantity input {
        font-size: 14px;
        max-width: 30px;
    }
}

.cart_item .product-quantity .quantity .quantity-plus {
    display: block;
    float: left;
    padding-right: 28px;
    background-color: transparent;
    font-size: 40px;
    color: #cfcfcf;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 980px) {
    .cart_item .product-quantity .quantity .quantity-plus {
        font-size: 20px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .cart_item .product-quantity .quantity .quantity-plus {
        font-size: 14px;
    }
}

.cart_item .product-quantity .quantity .quantity-plus:hover {
    color: #0083ff;
}

.cart_item .product-subtotal {
    padding-right: 45px;
}

@media (max-width: 570px) {
    .cart_item .product-subtotal {
        padding-right: 10px;
    }
}

.cart_item .product-subtotal .total {
    color: #f89101;
    font-size: 18px;
}

.woocommerce .cart-product-wrap-title-main tr > th {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #121921;
    padding: 30px 0;
    text-align: left;
    border: none;
}

@media (max-width: 460px) {
    .woocommerce .cart-product-wrap-title-main tr > th {
        font-size: 12px;
    }
}

.cart-total {
    text-align: center;
}

.cart-total .cart-total-title {
    font-size: 38px;
    margin-bottom: 30px;
    color: #273f5b;
}

@media (max-width: 768px) {
    .cart-total .cart-total-title {
        font-size: 22px;
    }
}

.cart-total .cart-total-subtotal {
    margin-bottom: 5px;
}

.cart-total .cart-total-total {
    margin-bottom: 40px;
}

.cart-total .cart-total-total .price {
    color: #f26522;
}

.cart-total .btn-medium {
    width: 100%;
}

.woocommerce .cart-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 38px;
    color: #273f5b;
}

@media (max-width: 768px) {
    .woocommerce .cart-title {
        font-size: 22px;
    }
}

.cart-total.cart_totals {
    width: 50%;
    float: none;
    clear: both;
    overflow: hidden;
    padding: 40px 0;
    margin: 0 auto;
}

.cart-collaterals {
    overflow: hidden;
}

.woocommerce .cart-total table.shop_table .order-total td,
.woocommerce table.shop_table tbody:first-child tr:first-child td {
    text-align: right;
    font-size: 22px;
    width: auto;
    color: #273f5b;
    padding: 12px 0;
}

@media (max-width: 640px) {
    .woocommerce .cart-total table.shop_table .order-total td,
    .woocommerce table.shop_table tbody:first-child tr:first-child td {
        font-size: 18px;
    }
}

.woocommerce .checkout_coupon.coupon input {
    margin-bottom: 0;
    margin-right: 30px;
    width: auto;
    border: 2px solid #dbe3ec;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.woocommerce .checkout_coupon.coupon input:focus {
    border-color: transparent;
    -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
}

.woocommerce .checkout_coupon.coupon input.btn--primary {
    border: none;
}

@media (max-width: 460px) {
    .woocommerce .checkout_coupon.coupon input {
        margin-bottom: 30px;
    }
}

@media (max-width: 360px) {
    .woocommerce .checkout_coupon.coupon input {
        width: 100%;
    }
}

.woocommerce .checkout_coupon.coupon input.btn--breez {
    margin-right: 0;
}

@media (max-width: 800px) {
    .woocommerce .checkout_coupon.coupon input.btn--breez {
        margin-bottom: 0;
    }
}

.woocommerce .contact-form form.login.shop-user-form-return input {
    border: 2px solid #dbe3ec;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.woocommerce .contact-form form.login.shop-user-form-return input:focus {
    border-color: transparent;
    -webkit-box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25);
}

.woocommerce .contact-form form.login.shop-user-form-return input.btn--secondary {
    background-color: #273f5b;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.woocommerce .contact-form form.login.shop-user-form-return input.btn {
    width: auto;
    margin-bottom: 0;
    margin-top: 0;
}

.woocommerce table.shop_table tbody:first-child tr:first-child th,
.woocommerce .cart-total table.shop_table .order-total th {
    font-size: 22px;
    width: auto;
    color: #273f5b;
    padding: 12px 0;
}

.cross-sells .crumina-heading {
    margin-bottom: 40px;
}

.woocommerce .cart-total table.shop_table .order-total td {
    color: #f89101;
}

.woocommerce .showcoupon,
.woocommerce .showlogin {
    margin-left: 30px;
}

@media (max-width: 1024px) {
    .woocommerce .showcoupon,
    .woocommerce .showlogin {
        display: block;
        margin-left: 0;
    }
}

.woocommerce .item-title {
    margin-bottom: 30px;
    padding: 20px 30px;
    border-radius: 50px;
    background-color: #ecf5fe;
    font-size: 20px;
    color: #273f5b;
}

.woocommerce .checkout_coupon.coupon,
.woocommerce .contact-form form.login.shop-user-form-return {
    border: none;
    -webkit-box-shadow: 5px 0 30px 0 rgba(200, 219, 239, 0.4);
    box-shadow: 5px 0 30px 0 rgba(200, 219, 239, 0.4);
    padding: 60px;
}

.woocommerce .checkout.woocommerce-checkout #customer_details {
    overflow: hidden;
    margin: 0 -15px;
}

.woocommerce .checkout.woocommerce-checkout #customer_details .col-1, .woocommerce .checkout.woocommerce-checkout #customer_details .col-2 {
    width: 50%;
    float: left;
    padding: 15px;
}

@media (max-width: 1024px) {
    .woocommerce .checkout.woocommerce-checkout #customer_details .col-1, .woocommerce .checkout.woocommerce-checkout #customer_details .col-2 {
        width: 100%;
    }
}

.woocommerce-additional-fields h3 {
    color: #273f5b;
}

.woocommerce h3#order_review_heading {
    color: #273f5b;
}

.woocommerce .woocommerce-shipping-fields h3,
.woocommerce .woocommerce-billing-fields h3 {
    margin-bottom: 40px;
    color: #273f5b;
}

.woocommerce .woocommerce-shipping-fields p,
.woocommerce .woocommerce-billing-fields p {
    margin-bottom: 30px;
}

.woocommerce .woocommerce-shipping-fields textarea:focus,
.woocommerce .woocommerce-billing-fields textarea:focus {
    background-color: #fff;
    -webkit-box-shadow: 17px 0 60px #d3dcdc;
    box-shadow: 17px 0 60px #d3dcdc;
}

.nice-select.country_to_state.country_select {
    display: none;
}

#billing_first_name_field,
#billing_last_name_field,
#billing_phone_field,
#billing_state_field,
#billing_postcode_field,
#billing_city_field {
    width: 50%;
    float: left;
}

@media (max-width: 768px) {
    #billing_first_name_field,
    #billing_last_name_field,
    #billing_phone_field,
    #billing_state_field,
    #billing_postcode_field,
    #billing_city_field {
        width: 100%;
        padding: 0;
        float: none;
    }
}

#billing_first_name_field.form-row-first,
#billing_last_name_field.form-row-first,
#billing_phone_field.form-row-first,
#billing_state_field.form-row-first,
#billing_postcode_field.form-row-first,
#billing_city_field.form-row-first {
    padding-right: 15px;
}

@media (max-width: 1024px) {
    #billing_first_name_field.form-row-first,
    #billing_last_name_field.form-row-first,
    #billing_phone_field.form-row-first,
    #billing_state_field.form-row-first,
    #billing_postcode_field.form-row-first,
    #billing_city_field.form-row-first {
        padding-right: 0;
    }
}

#billing_first_name_field.form-row-last,
#billing_last_name_field.form-row-last,
#billing_phone_field.form-row-last,
#billing_state_field.form-row-last,
#billing_postcode_field.form-row-last,
#billing_city_field.form-row-last {
    padding-left: 15px;
}

@media (max-width: 768px) {
    #billing_first_name_field.form-row-last,
    #billing_last_name_field.form-row-last,
    #billing_phone_field.form-row-last,
    #billing_state_field.form-row-last,
    #billing_postcode_field.form-row-last,
    #billing_city_field.form-row-last {
        padding-right: 0;
    }
}

#billing_state_field,
#billing_postcode_field,
#billing_city_field {
    padding-right: 15px;
}

.select2-container.country_to_state.country_select .select2-choice,
.select2-container.state_select .select2-choice {
    padding: 13px 40px;
    border-color: transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 16px;
    border-radius: 50px;
    background-color: #f7f9f9;
}

.select2-container .select2-choice .select2-arrow {
    right: 20px;
}

.select2-drop-active {
    border: none;
}

.woocommerce table .cart_item td,
.woocommerce table .cart_item th {
    padding: 40px 0 40px 100px;
    margin: 0;
    font-size: 19px;
    font-weight: 400 !important;
    color: #2f2c2c;
    font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
    border: none;
}

@media (max-width: 800px) {
    .woocommerce table .cart_item td,
    .woocommerce table .cart_item th {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 16px;
    }
}

@media (max-width: 570px) {
    .woocommerce table .cart_item td,
    .woocommerce table .cart_item th {
        font-size: 14px;
    }
}

.woocommerce table .cart_item td.product-total .woocommerce-Price-amount.amount {
    color: #f89101;
    font-size: 18px;
}

@media (max-width: 800px) {
    .woocommerce table .cart_item td.product-total .woocommerce-Price-amount.amount {
        font-size: 16px;
    }
}

@media (max-width: 570px) {
    .woocommerce table .cart_item td.product-total .woocommerce-Price-amount.amount {
        font-size: 14px;
    }
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 15px 0 65px rgba(0, 0, 0, 0.3);
    box-shadow: 15px 0 65px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
    margin-top: 40px;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .form-row.place-order {
    margin: 0;
    overflow: hidden;
    padding: 30px 0 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order strong {
    font-weight: normal;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 60px;
    background-color: #ecf5fe;
    border-bottom: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order #payment .form-row.place-order {
    padding: 40px 60px;
    background-color: #fff;
}

.woocommerce-checkout-review-order-table .cart_item.total th, .woocommerce-checkout-review-order-table .cart_item.total td {
    color: #fff;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color: #2f2c2c;
    font-family: "Varela Round", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

@media (max-width: 768px) {
    .woocommerce-checkout #payment ul.payment_methods li {
        font-size: 14px;
    }
}

.woocommerce-checkout #payment ul.payment_methods li input {
    width: auto;
}

.woocommerce-checkout #payment ul.payment_methods li input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.woocommerce-checkout #payment div.payment_box p {
    font-size: 14px;
}

.woocommerce table.cart.shop_table img {
    width: auto;
    max-width: 140px;
}

@media (max-width: 768px) {
    .woocommerce-page table.cart .product-thumbnail {
        display: block;
    }
}

.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
    font-size: 0.67em;
}

@media (max-width: 360px) {
    .woocommerce-checkout #payment .payment_method_paypal .about_paypal {
        float: none;
        display: inline-block;
    }
}

@media (max-width: 570px) {
    .woocommerce ul.products li.product {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .woocommerce .cart-collaterals .cart-total.cart_totals.calculated_shipping {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .woocommerce .cart-main .shop_table .coupon input.email {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .woocommerce .cart-main .shop_table .coupon input.btn {
        width: auto;
    }
}

.woocommerce .wc-bacs-bank-details-heading,
.woocommerce .woocommerce-thankyou-order-received {
    margin-bottom: 30px;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
    font-weight: normal;
}

@media (max-width: 980px) {
    .woocommerce .woocommerce-thankyou-order-details li {
        float: none;
        margin-bottom: 30px;
    }
}

/*------------- #Woocommerce --------------*/
.woocommerce .product.first {
    clear: both;
}

.woocommerce .products ul, .woocommerce ul.products {
    margin: 0 -20px;
}

.woocommerce #content .price {
    margin-bottom: 30px;
    font-size: 20px;
}

.woocommerce #content .price ins {
    text-decoration: none;
}

.woocommerce #content .price del {
    font-size: 0.82em;
    color: #839dbc;
    text-decoration: line-through;
    margin-right: 5px;
    display: inline-block;
    opacity: 1;
}

.woocommerce #content .product-details-info .price {
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .woocommerce #content .product-details-info .price {
        font-size: 22px;
    }
}

.woocommerce #content .product-details-info .price del {
    opacity: .6;
}

.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
    margin: 0 0 1em;
    display: inline-block;
    font-size: 16px;
}

@media (max-width: 640px) {
    .woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
        display: block;
    }
}

.woocommerce-grid-control {
    text-align: center;
    margin-bottom: 30px;
}

.woocommerce-grid-control .woocommerce-result-count {
    margin-right: 60px;
    font-size: 16px;
    color: #839dbc;
}

@media (max-width: 640px) {
    .woocommerce-grid-control .woocommerce-result-count {
        margin-right: 0;
    }
}

.woocommerce-grid-control .woocommerce-ordering {
    min-width: 350px;
}

@media (max-width: 480px) {
    .woocommerce-grid-control .woocommerce-ordering {
        min-width: unset;
    }
}

.woocommerce-grid-control .woocommerce-ordering .nice-select {
    font-weight: 700;
    color: #5e7896;
}

.woocommerce-grid-control .woocommerce-ordering .nice-select:after {
    border-bottom: 2px solid #5e7896;
    border-right: 2px solid #5e7896;
}

.woocommerce ul.products li.product a .attachment-shop_catalog {
    margin-bottom: 40px;
}

.woocommerce.single #primary .onsale {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-weight: 700;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 45px !important;
    left: 35px !important;
    right: auto !important;
    font-size: 14px;
    color: #fff;
    border-radius: 100%;
    background-color: #01a23c;
}

.woocommerce ul.products li.product .onsale {
    top: 30px !important;
    left: 30px;
    right: auto !important;
    background-color: #ff3133;
    font-size: 14px;
    text-transform: uppercase;
    min-height: 55px;
    min-width: 55px;
    z-index: 8;
}

.woocommerce .product-item {
    text-align: center;
    background-color: #f2f7fd;
    padding: 50px;
    display: block;
}

@media (max-width: 1200px) {
    .woocommerce .product-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .woocommerce .product-item {
        margin: 0 15px 30px;
    }
}

.woocommerce .product-item .product-item-info .product-category {
    font-size: 14px;
    margin-bottom: 20px;
}

.woocommerce .product-item .product-item-info .product-category a {
    color: #839dbc;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce .product-item .product-item-info .product-title {
    margin-bottom: 20px;
}

.woocommerce .product-item a.added_to_cart {
    padding: 18px 50px;
    font-size: 16px;
    color: #fff;
    border-radius: 50px;
    white-space: normal;
    font-weight: 700;
}

.woocommerce .product-item a.added_to_cart:after {
    font-family: 'seotheme' !important;
    margin-left: 10px;
    font-size: 12px;
    display: inline;
    content: "\e908";
}

.woocommerce .product-item .add_to_cart_button.added {
    display: none;
}

.woocommerce .product-item:hover {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 50px 0 rgba(200, 219, 239, 0.3);
    box-shadow: 0 10px 50px 0 rgba(200, 219, 239, 0.3);
}

.woocommerce div.product .stock {
    text-indent: 50px;
}

.woocommerce-Reviews-title {
    margin-bottom: 40px;
}

.woocommerce .comments__body .star-rating {
    float: none;
    margin-bottom: 10px;
}

.woocommerce .star-rating span {
    color: #fcd846;
}

.woocommerce .woocommerce-form.woocommerce-form-login {
    border: none;
    padding: 0;
}

.woocommerce .woocommerce-form.woocommerce-form-login input.button {
    display: block;
    width: auto;
    padding: 18px 50px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 30px 0;
}

.woocommerce .woocommerce-form.woocommerce-form-login input[type="checkbox"] {
    width: auto;
    display: inline-block;
    margin-right: 10px;
}

.woocommerce .woocommerce-form.woocommerce-form-login .form-row .woocommerce-form__label-for-checkbox {
    padding-left: 0;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    position: relative;
    text-align: center;
}

.woocommerce ul.products li.product mark, .woocommerce-page ul.products li.product mark {
    background-color: rgba(0, 131, 255, 0.2);
    border-radius: 100%;
    padding: 3px;
}

.woocommerce.columns-4 ul.products li.product-category {
    width: 25%;
}

.woocommerce.columns-3 ul.products li.product-category {
    width: 33%;
}

.woocommerce.columns-2 ul.products li.product-category {
    width: 50%;
}

.woocommerce ul.products li.product-category {
    padding: 0 15px;
    margin-bottom: 20px;
    margin-right: 0;
}

/*------------- #SHOP-USER-FORM --------------*/
.shop-user-form .item-title {
    font-size: 30px;
    padding-bottom: 40px;
    display: block;
    position: relative;
}

@media (max-width: 640px) {
    .shop-user-form .item-title {
        font-size: 20px;
    }
}

.shop-user-form .item-title:after {
    content: '';
    display: block;
    border: 30px solid transparent;
    border-bottom: 20px solid #dbe3ec;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.shop-user-form .item-title.active:after {
    opacity: 1;
}

.shop-user-form input {
    background-color: #fff;
    margin-bottom: 30px;
}

.shop-user-form .helped {
    padding: 20px 0;
    display: block;
}

.shop-user-form .helped:hover {
    color: #0083ff;
}

.shop-user-form .login-btn-wrap {
    overflow: hidden;
    padding-bottom: 20px;
    display: table;
}

.shop-user-form .login-btn-wrap .btn {
    float: left;
    margin-right: 20px;
}

@media (max-width: 360px) {
    .shop-user-form .login-btn-wrap .btn {
        margin-bottom: 30px;
    }
}

.shop-user-form .login-btn-wrap .remember-wrap {
    display: table-cell;
    vertical-align: middle;
}

@media (max-width: 320px) {
    .shop-user-form .login-btn-wrap .remember-wrap {
        display: block;
    }
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox {
    position: relative;
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox input[type=checkbox] {
    display: none;
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox label {
    padding-left: 30px;
    color: #516e90;
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    bottom: 5px;
    border-radius: 3px;
    border: none;
    background-color: #0083ff;
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox input[type=checkbox]:checked + label:before {
    content: "\2714";
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 14px;
}

.shop-user-form .shop-user-form-return p {
    margin-bottom: 30px;
}

.billing-details .billing-details-title {
    margin-bottom: 60px;
}

/*------------- #PRODUCT-DETAILS --------------*/
@media (max-width: 570px) {
    .product-details {
        overflow: hidden;
    }
}

.product-details .product-details-thumb {
    padding: 80px 100px 130px;
    position: relative;
    background-color: #dbe3ec;
    -webkit-box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 980px) {
    .product-details .product-details-thumb {
        padding: 30px;
    }
}

.product-details .product-details-thumb .product-details-img-wrap {
    position: relative;
    max-width: 271px;
    margin: 0 auto;
}

.product-details .product-details-thumb .product-details-img-wrap .sale {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    position: absolute;
    top: -25px;
    left: -43px;
    background-color: #f15b26;
    font-size: 18px;
    color: #fff;
    border-radius: 100%;
}

.product-details .product-details-thumb .pagination, .product-details .product-details-thumb .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

@media (max-width: 980px) {
    .product-details .product-details-thumb .pagination, .product-details .product-details-thumb .swiper-pagination {
        bottom: 10px;
    }
}

.product-details .product-details-thumb .pagination .swiper-pagination-bullet, .product-details .product-details-thumb .swiper-pagination .swiper-pagination-bullet {
    background-color: #d7d7d7;
}

.product-details .product-details-thumb .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .product-details .product-details-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
    border: 2px solid #0083ff;
}

.product-details .swiper-container {
    padding-bottom: 80px;
    margin-bottom: -80px;
    overflow: visible;
}

.product-details .swiper-container .swiper-slide {
    opacity: 0 !important;
}

.product-details .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

@media (max-width: 570px) {
    .product-details .swiper-container .swiper-slide.swiper-slide-active {
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0) !important;
        transform: translate(-50%, 0) !important;
        display: block;
    }
}

.product-details .product-details-info {
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 570px) {
    .product-details .product-details-info {
        padding-top: 40px;
    }
}

.product-details .product-details-info .product-details-info-price {
    color: #f26522;
    font-size: 24px;
    margin-bottom: 15px;
}

.product-details .product-details-info .product-details-info-price .del {
    color: #cccccc;
    font-size: 18px;
    margin-right: 15px;
    text-decoration: line-through;
}

.product-details .product-details-info .product-details-info-title {
    margin-bottom: 20px;
}

.product-details .product-details-info .product-details-info-ratings {
    margin-bottom: 35px;
}

.product-details .product-details-info .product-details-info-ratings .ratings {
    display: inline-block;
    margin-right: 20px;
    color: #cccccc;
}

.product-details .product-details-info .product-details-info-ratings .ratings .fa-star {
    color: #fcd846;
}

.product-details .product-details-info .product-details-info-ratings .reviews {
    display: inline-block;
    font-size: 16px;
    color: #0083ff;
}

.product-details .product-details-info .product-details-info-text {
    margin-bottom: 40px;
}

.product-details .product-details-info .quantity {
    margin-right: 30px !important;
    float: left;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    display: inline-block;
    border-radius: 50px;
}

@media (max-width: 980px) {
    .product-details .product-details-info .quantity {
        margin-bottom: 30px;
    }
}

.product-details .product-details-info .quantity .quantity-minus {
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    color: #839dbc;
    padding-left: 28px;
}

.product-details .product-details-info .quantity .quantity-minus:hover {
    color: #0083ff;
}

.product-details .product-details-info .quantity input {
    max-width: 70px;
    float: left;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    line-height: 60px;
    width: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

.product-details .product-details-info .quantity .quantity-plus {
    line-height: 60px;
    font-size: 24px;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    color: #839dbc;
    padding-right: 28px;
}

.product-details .product-details-info .quantity .quantity-plus:hover {
    color: #0083ff;
}

.product-details .product-details-info .btn i {
    font-size: 18px;
    margin-left: 10px;
}

.product-details .product-details-add-info .author {
    font-size: 16px;
    color: #516e90;
    margin-bottom: 15px;
}

.product-details .product-details-add-info .author .author-name {
    color: #0083ff;
}

.product-details .product-details-add-info .tags {
    font-size: 16px;
    color: #516e90;
    margin-bottom: 15px;
}

.product-details .product-details-add-info .tags .tags-item {
    color: #4b5d73;
}

.product-details .product-details-add-info .tags .tags-item:hover {
    color: #0083ff;
}

.product-details .product-details-add-info .socials {
    font-size: 16px;
    color: #516e90;
    margin-bottom: 15px;
}

.product-details .product-details-add-info .socials .social__item i {
    font-size: 20px;
    color: #d7d7d7;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.product-details .product-details-add-info .socials .social__item:hover i {
    color: #08acee;
}

.product-details .product-details-add-info .socials .social__item:first-child {
    margin-left: 15px;
}

.product-description {
    position: relative;
    padding: 100px 0;
    background-color: #ecf5fe;
}

@media (max-width: 768px) {
    .product-description {
        padding: 50px 0;
    }
}

.product-description .tab-content > .tab-pane {
    display: none;
}

.product-description .tab-content > .tab-pane.active {
    display: block;
}

.product-description .product-description-control {
    margin-bottom: 50px;
    float: left;
    padding: 0;
}

.product-description .product-description-control li {
    display: inline-block;
}

.product-description .product-description-control li .control-item {
    padding: 15px 0;
    text-align: left;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    float: left;
}

.product-description .product-description-control li .control-item:before {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    border-radius: 5px;
    background-color: #839dbc;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.product-description .product-description-control li .control-item.reviews {
    border-right: none;
    border-radius: 0 50px 0 0;
}

.product-description .product-description-control li.active .control-item {
    color: #0083ff;
}

.product-description .product-description-control li.active .control-item:before {
    width: 100%;
    background-color: #0083ff;
}

.product-description .product-description-control li + li {
    margin-left: 40px;
}

.product-description .product-description-title {
    font-size: 40px;
    color: #273f5b;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .product-description .product-description-title {
        font-size: 26px;
    }
}

.product-description .comments__list-review .comments__item-review {
    border-bottom: none;
}

.product-description .comments__list-review .comments__item-review .comment-content p {
    margin-bottom: 30px;
}

.product-description .add-review .your-rating {
    padding-left: 40px;
    font-size: 16px;
}

.product-description .add-review .your-rating .ratings {
    display: inline-block;
    margin-left: 50px;
    color: #ccc;
    margin-bottom: 30px;
}

.product-description .add-review .your-rating .ratings .fa-star {
    color: #fcd846;
}

.product-description .add-review .contact-form {
    padding-bottom: 20px;
}

.product-description .add-review .contact-form input, .product-description .add-review .contact-form textarea {
    background-color: #fff;
}

.product-description .add-review .contact-form textarea {
    min-height: 230px;
}

.product-description .product-description-text {
    margin-bottom: 30px;
}

.product-description .tab-content ul {
    margin: 1.5em 0;
    list-style: none;
    padding-left: 20px;
}

.product-description .tab-content ul li {
    margin-bottom: 18px;
    font-size: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    padding-left: 40px;
}

.product-description .tab-content ul li:before {
    content: "\e908";
    position: absolute;
    left: 0;
    top: 5px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-family: 'seotheme';
    counter-increment: none;
    font-size: 12px;
}

.woocommerce table.shop_attributes td {
    padding: 8px;
}

.logged-in-as a + a {
    margin-left: 20px;
}

.comment-form-rating {
    margin-bottom: 30px;
}

.product-description .product-description-control {
    margin-bottom: 50px;
    float: left;
    padding: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .product-description .product-description-control {
        margin-bottom: 20px;
    }
}

.product-description .product-description-control li.active .control-item:before {
    opacity: 1;
}

.product-description .product-description-control li:first-child {
    margin-left: 0;
}

.product-description .product-description-control li:before {
    display: none;
}

@media (max-width: 1000px) {
    .product-description .product-description-control li .control-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-description .product-description-control li .control-item {
        font-size: 14px;
    }

    .woocommerce.columns-2 ul.products li.product-category,
    .woocommerce.columns-3 ul.products li.product-category,
    .woocommerce.columns-4 ul.products li.product-category {
        width: 100%;
    }
}

.project-meta {
    margin-bottom: 30px;
}

.project-meta .post__date + .sl-wrapper {
    margin-left: 20px;
}

.project-meta + .crumina-heading {
    margin-bottom: 30px;
}

.project-meta .sl-wrapper .count-likes {
    font-family: "Nunito", Arial, "Helvetica Neue", Helvetica, serif, sans-serif;
}

.project-meta .likes {
    display: inline-block;
    color: #ff454f;
    margin-bottom: -10px;
}

.project-meta .likes .count-likes {
    font-size: 18px;
    float: left;
}

.project-meta .likes i {
    font-size: 26px;
    float: left;
    margin-right: 5px;
}

.challenge-solutions .challenge-solutions-thumb {
    border: 2px solid #dbe3ec;
    border-radius: 10px;
    padding: 30px;
}

.challenge-solutions .challenge-solutions-thumb img {
    margin-bottom: 30px;
}

.challenge-solutions .challenge-solutions-thumb .text {
    padding-left: 30px;
    font-size: 14px;
    margin-bottom: 0;
}

.challenge-solutions .challenge-solutions-content .crumina-heading:first-child {
    margin-bottom: 60px;
}

.product-description-ver3 {
    position: relative;
}

.product-description-ver3 .product-description-ver3-thumb {
    width: auto;
    margin: 0 auto;
    position: relative;
    padding: 60px 0 90px 0;
}

@media (max-width: 768px) {
    .product-description-ver3 .product-description-ver3-thumb {
        padding-bottom: 30px;
    }
}

.half-height-bg {
    position: absolute;
    height: 50%;
    left: 0;
    right: 0;
    bottom: 0;
}

.image-shadow-rounded {
    border-radius: 10px;
    border-color: transparent;
    -webkit-box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    box-shadow: 0 1px 10px rgba(18, 25, 33, 0.1);
    background-color: #ecf5fe;
}

.select2-search input {
    border-radius: 0;
}

/*------------- #INTERESTED-PRODUCTS --------------*/
.interested-products {
    text-align: center;
}

.interested-products .products > h2 {
    padding: 1.5em;
    color: #273f5b;
}

.interested-products .crumina-heading {
    margin-bottom: 50px;
}

.interested-products .books-item {
    margin-bottom: 60px;
}

/*/ Effect 2: Move Up /*/
#items-grid > div.animate {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: moveUp 0.65s ease forwards;
    animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
    0% {
    }
    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/*------------- #POPUP-CART --------------*/
.cart-contents {
    display: inline-block;
}

.cart-popup-wrap {
    position: absolute;
    top: 39px;
    right: -50px;
    width: 330px;
    border-radius: 5px;
    -webkit-box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.16);
    background-color: #fff;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow-y: auto;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.cart-popup-wrap.visible {
    opacity: 1;
    visibility: visible;
    max-height: 80vh;
}

@media (max-width: 480px) {
    .cart-popup-wrap {
        top: calc(100% + 10px);
        width: 300px;
        right: -130px;
    }
}

.cart-popup-wrap .popup-cart {
    padding: 40px;
}

.cart-popup-wrap .popup-cart .title-cart {
    font-size: 18px;
}

.cart-popup-wrap .popup-cart .subtitle {
    font-size: 16px;
    margin-bottom: 20px;
}

.cart-popup-wrap .popup-cart .btn {
    text-transform: capitalize;
    width: 100%;
    text-align: center;
}

.cart-popup-wrap .popup-cart .cart-product {
    margin: 10px 0;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #dbe3ec;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item:last-child {
    border: none;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item .product-del {
    width: 25px;
    height: 25px;
    position: relative;
    font-size: 25px;
    z-index: 2;
    font-weight: 100;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item img {
    float: left;
    padding-right: 20px;
    display: table-cell;
    vertical-align: middle;
    width: 80px;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content {
    display: table-cell;
    vertical-align: middle;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content .cart-product-title {
    font-size: 16px;
    line-height: 1;
}

.cart-popup-wrap .popup-cart .cart-product .cart-product__item .cart-product-content .price {
    font-size: 14px;
}

.cart-popup-wrap .cart-total {
    padding: 20px 40px 20px;
    background-color: #dbe3ec;
    overflow: hidden;
    width: 100%;
}

.cart-popup-wrap .cart-total .cart-total-text {
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-popup-wrap .cart-total .cart-total-text .title {
    text-transform: uppercase;
    font-size: 16px;
}

.cart-popup-wrap .cart-total .cart-total-text .total-price {
    font-size: 18px;
}

.cart-popup-wrap .cart-total .btn {
    width: 50%;
    border-radius: 50px 0 0 50px;
    float: left;
}

.cart-popup-wrap .cart-total .btn:last-child {
    border-radius: 0 50px 50px 0;
}

.cart-popup-wrap .cart-total .btn + .btn {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .cart-popup-wrap .cart-total .btn + .btn {
        margin-top: 0;
    }
}

.cart-popup-wrap.cart-with-product {
    width: 370px;
}

@media (max-width: 360px) {
    .cart-popup-wrap.cart-with-product {
        width: 320px;
    }
}

.cart-popup-wrap.cart-with-product .popup-cart {
    padding: 40px 40px 0 40px;
}

ul.nav-add li.cart {
    margin-right: 10px;
    position: relative;
}

ul.nav-add .seoicon-basket {
    font-size: 28px;
    color: #6987ab;
    line-height: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

ul.nav-add .cart-count {
    color: #fff;
    background-color: #0083ff;
    display: block;
    position: absolute;
    left: -6px;
    top: 4px;
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 10px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 50%;
}

/*------------- #EDD --------------*/
.edd_price_options input {
    width: auto;
}

.edd_price_options label {
    color: #0083ff;
    font-weight: 700;
}

.edd_purchase_submit_wrapper .edd-cart-added-alert {
    fill: #0083ff;
    color: #0083ff;
}

.widget.widget_edd_cart_widget .edd-cart-number-of-items {
    font-style: normal;
    color: #516e90;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.widget.widget_edd_cart_widget .edd-remove-from-cart {
    color: #ff3133;
}

.widget.widget_edd_cart_widget .edd-cart-meta.edd_total {
    color: #0083ff;
    margin: 10px 0;
}

.widget.widget_edd_cart_widget .cart_item.edd_checkout a {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
    background-color: #0083ff;
    padding: 12px 35px;
    margin: 10px 0;
    display: inline-block;
    border-radius: 50px;
}

.widget.widget_edd_product_details h3 > span {
    font-size: 16px;
}

.widget.widget_edd_product_details h3 {
    font-size: 16px;
}

.widget.widget_edd_product_details .heading-title {
    margin-bottom: 20px;
}

.sidebar .widget[class*="widget_edd"] {
    padding-bottom: 20px;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget a {
    display: block;
    padding: 9px 0 0 30px;
    position: relative;
    font-size: 18px;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget a:before {
    content: '';
    display: block;
    height: 100%;
    width: 3px;
    background-color: #d6dfeb;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget li:last-child a:before {
    border-radius: 0 0 3px 3px;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget li:first-child a:before {
    border-radius: 3px 3px 0 0;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget li:hover a {
    color: #0083ff;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget li:hover a:before {
    background-color: #0083ff;
}

.widget.widget_edd_categories_tags_widget .edd-taxonomy-widget li:hover .cat-count {
    color: #fff;
    background-color: #0083ff;
}

/*------------- #WOOCOMMERCE --------------*/
.woocommerce-checkout-review-order-table .cart-product-wrap-title-main tr > th {
    padding: 30px 0 30px 100px;
}

@media (max-width: 768px) {
    .woocommerce-checkout-review-order-table .cart-product-wrap-title-main tr > th {
        padding-left: 10px;
    }
}

.shop_table .variation {
    margin: 5px 0;
}

.variation-Color {
    display: inline-block;
}

.woocommerce form .form-row label {
    padding-left: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #273f5b;
    display: inline-block;
}

.woocommerce div.product div.images img {
    width: auto;
}

.woocommerce form .form-row .input-checkbox {
    width: auto;
}

.woocommerce .select2.select2-container {
    background-color: transparent;
    border: 2px solid #dbe3ec;
    padding: 13px 40px;
}

.woocommerce-checkout table.cart .cart_item .product-thumbnail {
    font-size: 18px;
    color: #273f5b;
    font-weight: 700 !important;
}

@media (max-width: 800px) {
    .woocommerce-checkout table.cart .cart_item .product-thumbnail {
        font-size: 16px;
    }
}

@media (max-width: 540px) {
    .woocommerce-checkout table.cart .cart_item .product-thumbnail {
        font-size: 14px;
    }
}

.widget.widget_edd_product_details a:hover {
    color: #0083ff;
}

.widget.widget_edd_product_details a.button:hover {
    color: #fff;
}

.woocommerce-checkout table.cart .cart_item .product-quantity {
    font-weight: 300;
    font-size: 18px;
    color: #273f5b;
}

@media (max-width: 800px) {
    .woocommerce-checkout table.cart .cart_item .product-quantity {
        font-size: 16px;
    }
}

@media (max-width: 540px) {
    .woocommerce-checkout table.cart .cart_item .product-quantity {
        font-size: 14px;
    }
}

.woocommerce-checkout-review-order-table .cart_item.subtotal {
    background-color: #ecf5fe;
}

.woocommerce-checkout-review-order-table .cart_item.subtotal th, .woocommerce-checkout-review-order-table .cart_item.subtotal td {
    border: none;
}

.woocommerce-checkout-review-order-table .cart_item.subtotal td {
    font-weight: 300 !important;
}

.woocommerce-checkout-review-order-table .cart_item.subtotal th {
    text-transform: uppercase;
    color: #273f5b;
    font-weight: 700 !important;
}

.woocommerce div.product .product_title {
    color: #273f5b;
    font-size: 38px;
}

@media (max-width: 768px) {
    .woocommerce div.product .product_title {
        font-size: 22px;
    }
}

.woocommerce div.product p.price {
    font-size: 26px;
    font-weight: 700;
    color: #f89101;
}

.woocommerce .product-details .product-details-info .star-rating {
    margin-right: 15px;
}

.woocommerce div.product form.cart .reset_variations {
    font-weight: 700;
    float: right;
    margin-top: 10px;
}

.btn.full-width {
    width: 95%;
}

.product_meta {
    font-weight: 300;
}

.product_meta > span {
    display: block;
    margin-bottom: 10px;
}

.product_meta a {
    font-size: 16px;
    font-weight: 700;
    color: #4b5d73;
}

.product_meta a:hover {
    color: #0083ff;
}

.product-description .comments, .product-description .commentlist {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background-color: #01a23c;
    color: #fff;
    border-radius: 50px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .price del {
    display: inline-block;
}

.woocommerce .woocommerce-variation {
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .woocommerce .cart-product-wrap-title-main tr > th {
        font-size: 13px;
    }
}

@media (max-width: 860px) {
    .woocommerce-checkout #payment ul.payment_methods,
    .woocommerce-checkout .woocommerce-checkout-review-order #payment .form-row.place-order {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .woocommerce form .form-row.woocommerce-validated .select2-container {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .cart-main tbody .cart_item .cart-product-content .cart-product-title {
        margin: 0;
    }
}

.woocommerce div.product form.cart div.quantity {
    margin-bottom: 30px;
}

.woocommerce table.shop_attributes td p {
    padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs {
    margin-top: 30px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    padding: 10px;
}

.woocommerce-product-gallery__wrapper {
    max-width: none;
}

.woocommerce-MyAccount-navigation ul li.is-active a:before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation ul li a:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0f6";
    line-height: 1.618;
    margin-left: 0.5407911001em;
    width: 1.41575em;
    text-align: right;
    float: right;
    opacity: .25;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover:before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
    content: "\f0e4";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
    content: "\f291";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
    content: "\f1c6";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
    content: "\f015";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
    content: "\f09d";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
    content: "\f007";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    content: "\f08b";
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--subscriptions a:before {
    content: "\f021";
}

.my_account_orders .button.view:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f06e";
    margin-left: 0.5407911001em;
}

p.order-again .button:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f021";
    margin-left: 0.5407911001em;
}

.woocommerce-MyAccount-downloads .button:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0ed";
    margin-left: 0.5407911001em;
}

.woocommerce .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--contributions a:before,
.woocommerce-page .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--contributions a:before {
    content: "\f005";
}

.woocommerce-MyAccount-navigation ul li a {
    padding: .875em 0;
    display: block;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.woocommerce-MyAccount-navigation ul {
    margin-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.woocommerce-MyAccount-navigation {
    width: 17.6470588235%;
    float: left;
    margin-right: 5.8823529412%;
}

.woocommerce-MyAccount-content {
    width: 76.4705882353%;
    float: right;
    margin-right: 0;
}

.woocommerce-MyAccount-content fieldset {
    border: none;
}

.woocommerce-MyAccount-content fieldset legend {
    font-size: 2rem;
    margin-top: 30px;
}

/*------------- #WOOCOMMERCE-Shortcodes --------------*/
.woocommerce .quantity br,
.woocommerce .coupon br,
.woocommerce .btn br {
    display: none;
}

.woocommerce .woocommerce-MyAccount-content fieldset {
    margin-bottom: 30px;
}

.woocommerce .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}

/*================= Responsive Mode ============*/
@media (max-width: 1199px) {
    .edd_download {
        float: none !important;
    }
}

@media (max-width: 1024px) {
    ul.nav-add li.cart {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    .cart_item .cart-product-title {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .product-description .product-description-control li {
        display: block;
    }

    .product-description .product-description-control li + li {
        margin-left: 0;
        margin-top: 20px;
    }
}

.kc-blog-posts-2 .kc-list-item-2 {
    border: none !important;
}

.kc-blog-posts-4 .kc-list-item-4 .kc-post-header > a img {
    width: 100%;
}

.meta-title {
    right: 0;
}
