/*----- common css -----*/

* {
    margin: 0;
    padding: 0;
    font-family: "Source Sans Pro";
    box-sizing: border-box;
}

div {
    position: relative;
}

body {
    background-color: #eef4f4;
}

ul {
    list-style: none;
}

/*--template css start--*/

/*button style common*/
.btn {
    font-size: 16px;
    font-family: "Source Sans Pro";
    line-height: 40px;
    text-align: center;
    height: 40px;
    padding: 0 25px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 400ms;
}

.link {
    color: #1197C4;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    color: #fff !important;
    background-color: #1199C4;
    text-decoration: none;
}

.btn-primary:hover {
    color: #fff !important;
    background-color: #1187AC;
    text-decoration: none;
}

.btn-secondary {
    color: #555 !important;;
    border: 1px solid #bfbfbf;
    background-color: #fff;
    text-decoration: none;
}

.btn-secondary:hover {
    color: #fff !important;;
    border: 1px solid #1199C4;
    background-color: #1199C4;
    text-decoration: none;
}

.template_details-header .template_actions a + a {
    margin-left: 6px;
}

/*flex-layout css */

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

.align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.f-auto > *:first-child {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-right: 15px;
}

.l-auto > *:last-child {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-left: 15px;
}

/*end*/

/*start layout style*/
.template_list-block .template_inner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    margin: 0 15px;
    padding: 30px 18px 0;
    -webkit-box-shadow: -1px 0 1px #CCD1D1;
    box-shadow: -1px 0 1px #CCD1D1;
}

.template_list-block .template_single-item {
    -ms-flex-preferred-size: calc(33.33% - 24px);
    flex-basis: calc(33.33% - 24px);
    max-width: calc(33.33% - 24px);
    margin: 0 12px 20px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.template_list-block .template_single-item.active,
.template_list-block .template_single-item:hover {
    border: 1px solid #1199c4;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.template_single-item .template_img-holder {
    min-height: 238px;
    max-height: 238px;
    overflow: hidden;
    position: relative;
}

.template_single-item .template_img-holder img {
    max-width: 100%;
    width: 100%;
}

.template_single-item .template_img-holder .template_actions-bar {
    position: absolute;
    bottom: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 20px;
    visibility: hidden;
    background: rgba(0, 0, 0, .5);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.template_single-item.active .template_img-holder .template_actions-bar,
.template_single-item:hover .template_img-holder .template_actions-bar {
    visibility: visible;
    transition: all .4s;
    bottom: 0;
}

.template_single-item .template_img-holder .template_actions-bar .action_groups a + a {
    margin-left: 12px;
}

.template_single-item .template_img-holder .template_actions-bar.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.template_single-item .template_img-holder .template_actions-bar.center-align {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.template_single-item .template_img-holder .template_actions-bar .action_single {
    margin-left: 12px;
}

.template_single-item .template_img-holder .template_actions-bar .action_single i {
    font-size: 13px;
}

.template_single-item .template_content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #ffffff;
}

.template_single-item .template_content-block .split_left-dsc {
    flex: auto;
}

.template_single-item .template_content-block .split_left-dsc .template_name {
    font-size: 18px;
    font-weight: 600;
    color: #1199c4;
    position: relative;
}

.template_single-item.active .template_content-block .split_left-dsc .template_name:after {
    position: relative;
    content: "\f058";
    font-family: "FontAwesome";
    font-size: 18px;
    margin-left: 5px;
    color: #48C17E;
}

.template_rating-review .feature_data .template_rating label,
.template_single-item .template_content-block .split_left-dsc .template_rating > label,
.template_single-item .template_content-block .split_left-dsc .template_name > label {
    font-size: 15px;
    font-weight: 400;
    color: #707070;
}

.template_rating-review .feature_data .template_rating,
.template_single-item .template_content-block .split_left-dsc .template_rating {
    font-size: 19px;
    font-weight: 600;
    color: #707070;

}

.template_rating-review .feature_data .template_rating > i,
.template_single-item .template_content-block .split_left-dsc .template_rating > i {
    font-size: 15px;
    color: #FFB217;
    margin-right: 5px;
}

.template_single-item .template_content-block .split_right-pricing label,
.template_single-item .template_content-block .split_right-pricing em {
    display: block;
    text-align: center;
    color: #1199c4;
}

.template_single-item .template_content-block .split_right-pricing.free label,
.template_single-item .template_content-block .split_right-pricing.free em {
    color: #9C9B9B;
}

.template_single-item .template_content-block .split_right-pricing label {
    font-size: 18px;
}

.template_single-item .template_content-block .split_right-pricing em {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}

/*pagination style*/
/*
.pagination {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 20px 0;
}

.page-number {
    display: -webkit-flex;
    display: flex;
}
.page-number .page {
    color: #262728;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    padding: 0 12px;
    display: inline-block;
    text-decoration: none;
    line-height: 34px;
    height: 34px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: background-color 0.05s ease;
    -o-transition: background-color 0.05s ease;
    -webkit-transition: background-color 0.05s ease;
    transition: background-color 0.05s ease;
}
.page-number .page ~ .page {
    margin-left: 2px;
}
.page-number .page.active:not(.page-gap):not(.disabled),
.page-number .page:hover:not(.page-gap):not(.disabled) {
    color: #ffffff;
    background-color: #1199c4;
}
.page-number .page.disabled, .page-number .page.page-gap {
    cursor: default;
}
.page-number .page.disabled {
    cursor: default;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}
.page-number .prev-page,
.page-number .next-page {
    background-color: #ffffff;
    color: #95A8B1;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid #CBD4DF;
    display: inline-block;
    text-align: center;
    line-height: 34px;
    margin-left: 2px;
    height: 34px;
    width: 35px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: background-color 0.05s ease;
    -o-transition: background-color 0.05s ease;
    -webkit-transition: background-color 0.05s ease;
    transition: background-color 0.05s ease;
}
.page-number .prev-page:hover:not(.disabled),
.page-number .next-page:hover:not(.disabled) {
    background-color: #F4F8F9;
}
.page-number .prev-page.disabled,
.page-number .next-page.disabled {
    cursor: default;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
}

.item-per-page {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.item-per-page .showing {
    color: #79838F;
    font-size: 13px;
    margin-right: 10px;
}
.item-per-page ~ .page-number {
    margin-left: 10px;
}*/

/*end listing page*/

/*start Details style*/
.pluggable_details-block,
.template_details-block {
    padding: 0 20px;
}

.pluggable_details-header,
.template_details-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    background: #ffff;
}

.pluggable_details-header .pluggable_data-holder h2,
.template_details-block .template_details-header .template_name {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    font-size: 20px;
    font-weight: 600;
    color: #1197C4;
}

.pluggable_details-header .pluggable_data-holder p,
.template_details-block .template_details-header .template_name em {
    font-size: 15px;
    font-weight: 400;
    color: #707070;
    font-style: normal;
    display: block;
}

.pluggable_details-header .pluggable_data-holder p {
    margin: 4px 0;
}

.pluggable_details-header .pluggable_data-holder p > label {
    font-weight: 600;
}

/*end*/

/*template body style */
.pluggable_details-body,
.template_details-block .template_details-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 30px 0;
}

.pluggable_details-body .pluggable_left,
.template_details-block .template_details-body .gallery_left {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin-right: 60px;
    position: relative;
}

.template_details-block .template_details-body .gallery_main-window img {
    max-width: 100%;
}

.template_details-block .template_details-body .gallery_main-window {
    position: relative;
    border-radius: 5px;
    max-height: 696px;
    overflow: hidden;
    overflow-y: scroll;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.template_details-block .template_details-body .gallery_options {
    position: absolute;
    bottom: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.template_details-block .template_details-body .gallery_options .img-item {
    max-width: 150px;
    height: 90px;
    overflow: hidden;
    margin: 0 8px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.template_details-block .template_details-body .gallery_options .img-item:hover,
.template_details-block .template_details-body .gallery_options .img-item.active {
    box-shadow: 5px 5px 5px rgba(17, 51, 196, 0.2);
    border: 2px solid #1197C4;
}

.template_details-block .template_details-body .gallery_options .img-item img {
    max-width: 100%;
}

.pluggable_details-body .pluggable_dsc,
.template_details-block .template_details-body .gallery_dsc {
    flex: none;
    min-width: 370px;
    max-width: 370px;
    padding: 15px 20px 20px;
    background-color: #fff;
    max-height: 696px;
    overflow: auto;
}

.pluggable_details-body .pluggable_dsc {
    min-width: 332px;
    max-width: 332px;
    max-height: 500px;
}

.template_details-body .gallery_dsc .choose_theme {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}

.template_details-body .gallery_dsc .choose_theme .colour_items {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.template_details-body .gallery_dsc .choose_theme .colour_items .colour_holder {
    cursor: pointer;
    background-color: #ffffff;
    width: 55px;
    height: 55px;
    -webkit-flex: auto;
    flex: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    transition: all .4s;
}

.template_details-body .gallery_dsc .choose_theme .colour_items .colour_holder + .colour_holder {
    margin-left: 14px;
}

.template_details-body .gallery_dsc .choose_theme .colour_items .colour_holder.checked:after {
    content: "\f00c";
    font-family: "FontAwesome";
    font-size: 24px;
    color: #ffffff;
    transition: all .4s;
}

.template_details-body .gallery_dsc .choose_theme .colour_items .colour_holder.checked:before {
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    border: 2px solid #fff;
    transition: all .4s;
}

.pluggable_dsc .pluggable_brief,
.template_details-body .gallery_dsc .template_brief {
    margin: 10px 0;
}

.template_details-body .gallery_dsc h4 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}

.pluggable_dsc .pluggable_brief .feature_data a,
.template_details-body .gallery_dsc a {
    font-size: 15px;
    color: #1197C4;
    text-decoration: none;
}

.template_details-body .gallery_dsc p {
    font-size: 17px;
    color: #515151;
    line-height: 22px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}

.pluggable_brief .feature_data,
.template_details-body .gallery_dsc .feature_data {
    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;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}

.pluggable_brief .feature_data > span,
.template_details-body .gallery_dsc .feature_data > span {
    font-size: 15px;
    color: #707070;
}

.pluggable_brief .feature_data > span + span,
.template_details-body .gallery_dsc .feature_data > span + span {
    font-weight: 700;
}

.pluggable_brief .feature_data > span + span.tags,
.template_details-body .gallery_dsc .feature_data > span + span.tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 15px;
}

.pluggable_brief .feature_data > .tags a,
.template_details-body .gallery_dsc .feature_data > .tags a {
    padding: 4px 10px;
    background: #eee;
    font-size: 12px;
    font-weight: 400;
    color: #707070;
    text-align: center;
    text-decoration: none;
    margin: 2px;
    border-radius: 2px;
    transition: all .4s;
    white-space: nowrap;
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.pluggable_brief .feature_data > .tags a:hover,
.template_details-body .gallery_dsc .feature_data > .tags a:hover {
    color: #fff;
    background: #707070;
    transition: all .4s;
}
 .template_review-box textarea {
    font-size: 14px;
    color: #707070;
    line-height: 20px;
    padding: 8px;
    width: 100%;
    max-height: 130px;
    border-radius: 3px;
    border: 1px solid #D3DBDF;
    resize: none;
}

.template_review-box textarea:focus {
    border: 1px solid #707070;
    outline: 0;
}

.template_review-box {
    width: 100%;
}
.template_review-box .review_label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.template_review-box .review_label > span {
    font-size: 15px;
    color: #707070;
}

.stars_group i {
    color: #DEDEDE;
    margin: 0 5px;
    transition: all .4s;
}

.stars_group i.selected,
.stars_group i:hover {
    color: #FFB217;
    transition: all .4s;
}

.template_details-body .gallery_dsc .template_rating-review {
    margin: 20px 0 0;
}

.template_details-body .gallery_dsc .template_rating-review .btn-primary {
    display: block;
    width: 100%;
}

/*pluggable style start*/
.pluggable_list-block .plugin_inner-wrapper {
    background-color: #fff;
    margin: 0 15px;
    padding: 30px 18px 0;
    -webkit-box-shadow: -1px 0 1px #CCD1D1;
    box-shadow: -1px 0 1px #CCD1D1;
}

.pluggable_title {
    font-size: 18px;
    font-weight: 600;
    color: #404040;
    margin: 0;
    padding: 0 15px 20px;
}

.pluggable_title span > em {
    font-weight: 400;
    font-style: normal;
}

.pluggable_title a {
    font-size: 15px;
    font-weight: 600;
    color: #1197C4;
    text-decoration: none;
    display: inline-block;
}

.addons_items-list .addons_single-item,
.plugin_items-list .plugin_single-item {
    -ms-flex-preferred-size: calc(20% - 24px);
    flex-basis: calc(20% - 24px);
    max-width: calc(320% - 24px);
    padding: 20px;
    margin: 0 12px 20px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.addons_items-list .addons_single-item {
    padding: 10px;
}

.addons_items-list .addons_single-item:hover,
.plugin_items-list .plugin_single-item:hover {
    border: 1px solid #1199c4;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.plugin_single-item .plugin_header h2 {
    color: #1197C4;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
}

.pluggable_details-header .pluggable_logo-holder .logo,
.addons_single-item .addons_header .addons_logo-holder,
.plugin_single-item.in-pack.installed .plugin_header .plugin_logo-holder {
    position: relative;
    height: 60px;
    width: 60px;
}

.addons_single-item .addons_header .addons_logo-holder {
    height: 40px;
    width: 40px;
}

.pluggable_details-header .pluggable_logo-holder .logo {
    height: 112px;
    width: 112px;
}

.pluggable_details-header .pluggable_logo-holder .logo img,
.addons_single-item .addons_header .addons_logo-holder img,
.plugin_single-item.in-pack.installed .plugin_header .plugin_logo-holder img {
    max-width: 100%;
    height: 100%;
    max-height: 60px;
    object-fit: cover;
}

.pluggable_details-header .pluggable_logo-holder .logo img {
    max-height: 112px;
}

.addons_single-item.in-pack.installed .addons_header .addons_logo-holder:before,
.plugin_single-item.in-pack.installed .plugin_header .plugin_logo-holder:before {
    font-family: "FontAwesome";
    font-size: 15px;
    content: "\f058";
    color: #48C17E;
    position: absolute;
    top: -6px;
    right: -6px;
    height: 15px;
    width: 15px;
    background: #fff;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
}

.addons_single-item.out-pack .addons_header .addons_logo-holder:before {
    font-family: "FontAwesome";
    font-size: 15px;
    content: "\f06a";
    color: #FFB217;
    position: absolute;
    top: -6px;
    right: -6px;
    height: 15px;
    width: 15px;
    background: #fff;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
}

.plugin_single-item.out-pack .plugin_data p,
.plugin_single-item.in-pack .plugin_data p {
    color: #707070;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding-left: 5px;
    position: relative;
}

.plugin_single-item.out-pack .plugin_data p:before,
.plugin_single-item.in-pack .plugin_data p:before {
    font-family: "FontAwesome";
    font-size: 15px;
    position: relative;
    left: -5px;
}

.plugin_single-item.in-pack .plugin_data p:before {
    content: "\f00c";
    color: #48C17E;
}

.plugin_single-item.out-pack .plugin_data p:before {
    content: "\f06a";
    color: #FFB217;
}

.plugin_single-item .plugin_body-content {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
}

.plugin_single-item .plugin_body-content > p {
    color: #707070;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 10px;
}

.pluggable_rating label,
.addons_single-item .addons_rating label,
.plugin_single-item .plugin_rating label {
    font-size: 16px;
    font-weight: 400;
    color: #707070;
}

.pluggable_rating,
.addons_single-item .addons_rating,
.plugin_single-item .plugin_rating {
    font-size: 16px;
    font-weight: 600;
    color: #707070;
}

.addons_single-item .addons_rating {
    margin-left: 10px;
}

.pluggable_rating > i,
.addons_single-item .addons_rating > i,
.plugin_single-item .plugin_rating > i {
    font-size: 15px;
    color: #FFB217;
    margin-right: 5px;
}

.addons_single-item .addons_footer-block a,
.plugin_single-item .plugin_footer-block a {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: all .4s;
}

.addons_single-item .addons_footer-block a:hover,
.plugin_single-item .plugin_footer-block a:hover {
    text-decoration: underline;
    transition: all .4s;
}

.addons_single-item .addons_footer-block a {
    font-size: 14px;
}

.addons_single-item.in-pack .addons_footer-block a,
.plugin_single-item.in-pack .plugin_footer-block a {
    color: #48C17E;
}

.addons_single-item.in-pack.installed .addons_footer-block a,
.plugin_single-item.in-pack.installed .plugin_footer-block a {
    color: #9C9B9B;
}

.addons_single-item.out-pack .addons_footer-block a,
.plugin_single-item.out-pack .plugin_footer-block a {
    color: #1197C4;
}

.plugin_single-item.in-pack.free-price .plugin_footer-block span,
.plugin_single-item .plugin_footer-block span {
    font-size: 16px;
    font-weight: 600;
    color: #707070;
}

.plugin_single-item.in-pack.free-price .plugin_footer-block span {
    color: #9C9B9B;
}

/*addons style*/
.addons_single-item .addons_data h2 {
    color: #404040;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.addons_single-item .addons_label {
    color: #707070;
    font-size: 14px;
    font-weight: 600;
    max-width: 170px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.addons_single-item .addons_footer-block {
    padding-top: 5px;
    margin-top: 10px;
    text-align: center;
    border-top: 1px solid #E6E6E6;
}

/*pluggable details*/
.pluggable_dsc .social_icons {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.pluggable_dsc .social_icons a {
    display: inline-block;
}

.pluggable_dsc .social_icons i {
    display: inline-block;
    height: 28px;
    width: 28px;
    font-size: 13px;
    line-height: 28px;
    margin: 0 3px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

.pluggable_dsc .social_icons i.fa-facebook {
    background: #375799;
}

.pluggable_dsc .social_icons i.fa-twitter {
    background: #68aae0;
}

.pluggable_dsc .social_icons i.fa-linkedin {
    background: #0073ab;
}

.pluggable_dsc .social_icons i.fa-envelope {
    background: #d03126;
}

.pluggable_dsc .support_request a {
    color: #0073ab;
    padding-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.pluggable_dsc .support_request a i {
    color: #FFB217;
    padding-right: 5px;
}

.pluggable_details-header .pluggable_actions span {
    margin-right: 20px;
}

.description.show-less {
    max-height: 370px;
    overflow: hidden;
}

.tab_navigation,
.tab_nav-content {
    max-width: 1170px;
}

.tab_navigation ul {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E1E2E2;
}

.tab_navigation ul li a {
    text-decoration: none;
    color: #707070;
    font-size: 16px;
    font-weight: 600;
    padding: 0 27px 10px;
    position: relative;
}

.tab_navigation li a:hover,
.tab_navigation li.active a {
    color: #1197C4;
    position: relative;
}

.tab_navigation ul li a:hover::after,
.tab_navigation ul li.active a::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -1px;
    background: #1197C4;
}

.screenshots-list-items a.list-images {
    max-width: 270px;
    position: relative;
    margin: 0 6px 10px;
}

/*.screenshots-list-items a.list-images + a.list-images {*/
    /*margin-left: 15px;*/
/*}*/

.screenshots-list-items a.list-images img {
    max-width: 100%;
    object-fit: cover;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.screenshots-list-items a.list-images span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    background-color: rgba(0, 0, 0, 0.5);
}
.screenshots-list-items {
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.content-inner-title {
    font-size: 20px;
    padding: 0 0 10px;
    color: #404040;
    font-weight: 600;
}

.content-inner-subtitle {
    font-size: 18px;
    color: #404040;
    font-weight: 600;
    margin: 20px 0 10px;
}

.key-features-list {
    margin-bottom: 15px;
}

.key-features-list li {
    font-size: 16px;
    color: #515151;
    line-height: 30px;
    position: relative;
    margin-left: 20px;
}

.key-features-list li:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 13px;
    height: 9px;
    width: 9px;
    background: #9C9B9B;
    border-radius: 9px;
}

.description p {
    color: #515151;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

.tab_nav-content .button-show-less {
    color: #1197C4;
    font-size: 16px;
    font-weight: 600;
}

/*pricing style*/

.pricing_box .pricing_item {
    background-color: #fff;
    padding: 24px;
    text-align: center;
    border-radius: 3px;
}

.pricing_box .pricing_item + .pricing_item {
    margin-left: 12px;
}

.pricing_box .pricing_item h2 {
    font-size: 26px;
    color: #404040;
    margin: 0;
    padding-bottom: 5px;
}

.pricing_box .pricing_item span {
    font-size: 16px;
    color: #404040;
}

.pricing_box .pricing_item p {
    font-size: 16px;
    color: #404040;
    line-height: 26px;
    margin: 0;
    padding-top: 15px;
}

.tab_nav-content .see-all-pricing {
    color: #1197C4;
    font-size: 16px;
    font-weight: 600;
    padding-top: 15px;
    display: inline-block;
}

/*end*/
.customer_review .write_review,
.customer_review .review_data {
    flex-basis: 628px;
    max-width: 628px;
    min-height: 290px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 3px;
}

.data_header .review_info h2 {
    color: #404040;
    font-size: 18px;
    font-weight: 600;

}

.data_header .link {
    font-size: 14px;
    font-weight: 400;

}

.customer_review .write_review {
    margin-left: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.customer_review .write_review > .stars_group {
    margin: 15px auto;
    min-width: 300px;
}

.customer_review .write_review .stars_group i {
    margin: 0 10px;
}

.customer_review .write_review > a {
    display: block;
    min-width: 300px;
    margin: 0 auto;
    text-align: center;
}

.customer_review .write_review > a + a {
    color: #1197C4;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
}

.customer_review .review_bar {
    display: block;
    height: 8px;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    margin: 0 12px;
    background: #EEF4F4;
}

.customer_review .stars_group i {
    margin: 0 2px;
    font-size: 13px;
}

.customer_review .review_count {
    font-size: 14px;
    color: #707070;
}

.customer_review .data_body {
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid #EEEEEE;
}

.customer_review .rating_dsc + .rating_dsc {
    margin-top: 15px;
}
.user_reviews-comments {
     padding-top: 30px;
 }

.comment_bar-header {
    border-bottom: 2px solid #E1E2E2;
    padding-bottom: 12px;
}
.comment_bar-header .btn-select {
    font-size: 15px;
    padding: 3px 8px;
    height: auto;
}

.comment_bar-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #707070;
    margin: 0;
    padding: 0;
}

.single_comment {
    margin: 15px 0 0;
}

.single_comment .user_img {
    flex: none;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    background-color: #9AA4AE;
}
.single_comment .user_img img {
    max-height: 100%;
}

.single_comment .user_data p {
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E1E2E2;
}

.single_comment .name {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 3px;
}

.single_comment .pluggable_rating em {
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    margin: 0 5px;
}
.user_reviews-comments .link {
    margin-left: 68px;
    padding-top: 10px;
    display: block;
}
/*fdfdfdfdf*/
.discount-preview {
    padding: 50px 58px;
    background-color: #fff;
    max-width: 824px;
    margin: auto auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
}
.discount-preview > .title-bar {
    font-size: 24px;
    line-height: 32px;
    color: #1198c3;
    margin: 0;
    padding-bottom: 10px;
}
.discount-preview  .data-holder > .status-icon {
    position: relative;
}
.discount-preview  .data-holder > .status-icon.inactive:after,
.discount-preview  .data-holder > .status-icon.active:after {
    content: "\00a0";
    display: block;
    width: 5px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    position: absolute;
    left: 18px;
    top: 58%;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.discount-preview  .data-holder  .status-icon.inactive:before,
.discount-preview  .data-holder  .status-icon.active:before {
    content: "\00a0";
    display: block;
    border: solid 14px #00CD00;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    height: 0;
    width: 0;
    position: absolute;
    left: 7px;
    top: 40%;
    margin-top: -8px;
}
.discount-preview  .data-holder  .status-icon.inactive:before {
    border: solid 14px #838383;
}

.discount-preview > .data-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: #d0d5d7 1px solid;
}
.discount-preview > .data-row.footer {
    border-bottom: none;
}
.discount-preview > .data-row > label {
    flex-basis: 350px;
    max-width: 350px;
    font-size: 17px;
    color: #575757;
    padding-right: 10px;
    word-break: break-word;
}
.discount-preview  .data-holder {
    flex: 1;
}
.discount-preview  .data-holder > a {
    display: block;
    padding: 0;
    margin: 0;
}
.discount-preview  .data-holder > span {
    display: block;
    color: #575757;
    font-size: 19px;
    padding-bottom: 6px;
}
.discount-preview .data-holder > span > em {
    font-style: normal;
    font-weight: 600;
}
.discount-preview .data-holder  > a {
    font-size: 16px;
    color: #1198c3;
    transition: all .4s;
    text-decoration: none;
}
.discount-preview .data-holder  > a:hover {
    color: #118ab1;
    text-decoration: underline;
    transition: all .4s;
}
/*sdsdsd*/
.discount-viewing-wrapper {
    max-width: 300px;
}
.discount-viewing-wrapper .discount-title {
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 8px 15px;
    background-color: #1198c5;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.discount-viewing-wrapper .discount-title i {
    font-style: normal;
}
.discount-viewing-wrapper .discount-viewing h4 {
    font-size: 19px;
}
.discount-viewing-wrapper .discount-viewing h4 > em {
    font-weight: 600;
    font-style: normal;
}
.discount-viewing .select-customer-preview-table > a {
    font-size: 16px;
    color: #16aad8;
    margin: 0;
    padding: 0;
}

/*-----My Accounts-----*/

.overview-top-wrapper .kpi-items {
    display: flex;
    flex-wrap: wrap;
}

.overview-top-section .overview-top-wrapper {
    padding: 20px 17px;
}

.overview-top-section .overview-top-wrapper .section-title {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 12px 13px;
}

.overview-top-wrapper .kpi-items .single-kpi {
    background: #fff;
    border: 1px solid #E1E2E2;
    border-radius: 3px;
    padding: 30px 20px;
    flex-basis: calc(100% / 4 - 26px);
    margin: 0 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-top-wrapper .kpi-items .single-kpi:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.single-kpi .data-holder h3 {
    color: #4A647D;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 2px;
}


.single-kpi .data-holder p {
    color: #707070;
    font-size: 16px;
    font-weight: 400;
}

.single-kpi .data-holder p .text-bold {
    font-weight: 600;
}

.single-kpi .data-holder p .free {
    color: #1197C4;
}

.single-kpi .icon-holder {
    width: 50px;
    height: 50px;
    background: #CCE9F3;
    border-radius: 50%;
    position: relative;
}

.open-project .icon-holder {
    background: #F3F1FF;
}

.plugins .icon-holder {
    background: #FFF7E6;
}

.addons .icon-holder {
    background: #EBF9E9;
}

.emails .icon-holder {
    background: #FFE2E2;
}

.domains .icon-holder {
    background: #EBF9E9;
}

.ssl-certificates .icon-holder {
    background: #F3F1FF;
}

.template .icon-holder {
    background: #E5F3FE;
}

.icon-holder:before {
    content: '';
    position: absolute;
    height: 24px;
    width: 28px;
    top: 50%;
    left: 50%;
    background: url(../images/icon-sprites.png);
    transform: translate(-50%, -50%);
}

.open-tickets .icon-holder:before {
    background-position: -28px 30px;
}

.open-project .icon-holder:before {
    background-position: 62px 0;
}

.plugins .icon-holder:before {
    background-position: 34px -25px;
}

.addons .icon-holder:before {
    background-position: 62px 30px;
}

.emails .icon-holder:before {
    background-position: 0 -25px;
}

.domains .icon-holder:before {
    background-position: 91px 0;
}

.template .icon-holder:before {
    background-position: 33px 0;
}

.account-plan-payment-section {
    padding: 0 35px;
}

.account-plan-payment-section .account-plan-payment-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border: 1px solid #ECECEC;
    background: #fff;
    border-radius: 3px;
}

.account-plan-payment-wrapper .account-plan-payment {
    padding: 20px 30px 20px 0;
    flex-basis: calc(100% / 3 - 70px);
    margin: 0 35px 0 35px;
}

.account-plan-payment.current-plan {
    position: relative;
}

.account-plan-payment.current-plan:before {
    content: '';
    position: absolute;
    background: #E1E2E2;
    width: 1px;
    height: 315px;
    left: -50px;
    bottom: 60px;
}

.account-plan-payment.current-plan:after {
    content: '';
    position: absolute;
    background: #E1E2E2;
    width: 1px;
    height: 315px;
    right: -20px;
    bottom: 60px;
}

.account-plan-payment .section-inner-title {
    font-size: 16px;
    color: #4A647D;
    margin-bottom: 12px;
    font-weight: 600;
}

.account-plan-payment .account-details,
.account-plan-payment .plan-details,
.account-plan-payment .payment-details {
    border-top: 1px solid #E1E2E2;
    padding-top: 20px;
}

.account-plan-payment.payment-method .payment-details {
    padding-top: 50px;
}

.account-plan-payment .account-details .profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.account-plan-payment .account-details .profile .profile-image {
    margin-right: 10px;
}

.account-details .profile .profile-name h5 {
    color: #1197C4;
    font-size: 20px;
    font-weight: 600;
}

.account-details .profile .profile-name p {
    font-size: 14px;
    color: #707070;
    /*font-weight: 600;*/
}

.additional-information .company-name,
.additional-information .phone,
.additional-information .location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #070707;
    border-bottom: 1px solid #EDEDED;
    padding: 10px 0;
}

.additional-information .location {
    border-bottom: none;
    margin-bottom: 25px;
}

.additional-information .company-name span,
.additional-information .location span {
    margin-right: 15px;
}

.additional-information .phone span {
    margin-right: 10px;
}

.billing-address a {
    display: block;
    padding: 15px 20px;
    background: #EEF4F4;
    border-radius: 2px;
    text-decoration: none;
    font-size: 15px;
    color: #707070;
    font-weight: 600;
    position: relative;
}

.billing-address a:after {
    content: url(../images/arrow.png);
    position: absolute;
    top: 18px;
    right: 20px;
}

.billing-address a:hover {
    color: #1197C4;
}

.account-plan-payment .plan-details .gold-change-plan {
    background: #1197C4;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 85px;
    border-radius: 6px;
    position: relative;
    justify-content: space-between;
    margin-bottom: 20px;
    z-index: 1;
}

.account-plan-payment .plan-details .gold-change-plan:before {
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/plan-bg.png) no-repeat center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.gold-change-plan .gold h3 {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
}

.gold-change-plan .gold p {
    font-size: 13px;
    color: #fff;
}

.edit-change-plan .change-plan {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    margin-left: 5px;
}

.gold-change-plan .edit-change-plan {
    display: flex;
}

.edit-change-plan .edit-icon {
    margin-top: 3px;
}

.plan-details .next-invoice,
.plan-details .last-payment {
    padding: 20px;
    border: 1px solid #ECECEC;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 3px;
}

.next-invoice .invoice-and-due h4,
.last-payment .last-payment-and-invoice h4 {
    font-size: 15px;
    color: #404040;
    font-weight: 600;
    margin-bottom: 5px;
}

.next-invoice .invoice-and-due p,
.last-payment .last-payment-and-invoice p {
    font-size: 15px;
    color: #404040;
}

.last-payment .last-payment-and-invoice span {
    color: #9C9B9B;
    font-size: 14px;
    margin-top: 2px;
    display: inline-block;
}

.next-invoice .play-now-button {
    color: #1197C4;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.next-invoice .play-now-button:hover {
    text-decoration: underline;
}

.current-plan .view-all-invoice {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #707070;
    font-size: 15px;
    font-weight: 600;
}

.current-plan .view-all-invoice:hover {
    color: #1197C4;
    text-decoration: underline;
}

.payment-details .card-information {
    max-width: 420px;
    padding: 35px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-information .logo-edit-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.visa-form .card-number-and-expiration {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-row.card-number {
    width: 65%;
    flex-basis: 65%;
    margin-right: 5%;
}

.form-row.expiration {
    width: 35%;
    flex-basis: 35%;
}

.card-information .visa-form input[type="text"] {
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #E6E6E6;
    font-size: 16px;
    color: #333333;
    padding: 5px 0 10px 0;
}

.card-information .visa-form input:focus {
    outline: none;
}

.card-information .visa-form label {
    color: #666666;
    font-size: 13px;
}

/*-----Package list css-----*/

.package-list-wrapper .package-list {
    width:100%;
    max-width:1460px;
    margin:0 auto;
    position:relative;
}

.package-list-wrapper .subscription {
    background-color: #fff;
    margin: 25px 20px;
    padding:60px;
    box-shadow: -1px 0 1px rgba(204, 209, 209, 1);
}

.package-list-wrapper .section-title {
    color: #2E2F2F;
    font-size: 18px;
    font-weight: 600;
}


.package-list-wrapper .subscription .package-list {
    width:100%;
    max-width:1460px;
    margin:0 auto;
    position:relative;
}


.package-list-wrapper .subscription .package-list table {
    border-collapse:collapse;
    /*table-layout:fixed;*/
    /*width:100%;*/
}

.package-list-wrapper .subscription .package-list table th {
    background:#fff;
    /*display:none;*/
}

.package-list-wrapper .subscription .package-list table td {
    padding: 12px;
    empty-cells: show;
    font-size: 15px;
    font-weight: 600;
    color: #404040;
}

.package-list-wrapper .subscription .package-list table tr + tr {
    border-bottom:1px solid #F0F0F0;
}

.package-list-wrapper .subscription .package-list table tr:last-child {
    border-bottom:none;
}

.package-list-wrapper .subscription .package-list table td+td,
.package-list-wrapper .subscription .package-list table th+th {
    text-align:center;
}

.package-list-wrapper .subscription .package-list table .row {
    background:#fff;
    font-size: 15px;
    font-weight: 600;
    color: #9C9B9B;
    text-transform: uppercase;
}

.txt-l {
    font-size: 32px;
    font-weight: 600;
    color: #32485E;
}

.txt-top {
    position:relative;
    top:-9px;
    left:-2px;
}

.tick {
    font-size:18px;
    color:#707070;
}

.hide {
    border:0;
    background:none;
}

.th-bronze,
.th-platinum,
.th-gold,
.th-silver,
.th-content {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #404040;
}


.th-bronze > span,
.th-platinum > span,
.th-gold > span,
.th-silver > span,
.th-content > span,
.pack-info {
    display: block;
    font-size: 13px;
    font-weight: normal;
    color: #707070;
    text-transform: capitalize;
    margin-top: 4px;
}

.pack-info {
    margin-bottom: 15px;
}

.pack-info a {
    display: block;
}

.pack-info .package-form-button,
.package-form-button {
    color: #1197C4;
    font-size: 15px;
    font-weight: 600;
    margin-top: 6px;
    text-decoration: none;
    position: relative;
    border-bottom: 2px solid #1197C4;
    display: inline-block;
}

.package-form-button.view-all {
    border-bottom: 1px solid #1197C4;
}

.package-list-wrapper .subscription .package-list table td .tick-sign {
    position: relative;
}

.package-list-wrapper .subscription .package-list table td .tick-sign:after {
    content: url(../images/tick-sign.png);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.package-list-wrapper .subscription .package-list table tr.border-none {
    border-bottom: none;
}

.package-list-wrapper .subscription .package-list table .highlited {
    background-color: rgba(208,240,253,.29);
}

@media (min-width: 640px) {

    .package-list-wrapper .subscription .package-list table td,
    .package-list-wrapper .subscription .package-list table th {
        display:table-cell !important;
    }

    .package-list-wrapper .subscription .package-list table td,
    .package-list-wrapper .subscription .package-list table th {
        width: 330px;
        padding-right: 60px;
    }

    .package-list-wrapper .subscription .package-list table td+td,
    .package-list-wrapper .subscription .package-list table th+th {
        width: 200px;
        padding: 10px 30px;
    }

}



/*-----checkout page-----*/

.package-list-wrapper .subscription .checkout {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.checkout .selected-plan {
    background: #E9F3F7;
    border: 1px solid #6FC0DB;
    border-radius: 3px;
    padding: 14px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.selected-plan .gold-plan p {
    color: #404040;
    font-size: 13px;
    font-weight: 600;
}

.selected-plan .gold-plan h3 {
    color: #1197C4;
    font-size: 16px;
    font-weight: 600;
}

.selected-plan .gold-plan h3 span {
    font-size: 14px;
    color: #707070;
    font-weight: 400;
}

.change-plan-button {
    color: #1197C4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.checkout .payment-and-purchase .purchase-summary {
    max-width: 300px;
    flex-basis: 300px;
    padding: 40px 20px;
    background: #FBFBFB;
}

.payment-details-form.f-auto {
    flex: auto;
    margin-right: 25px;
    padding: 40px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.payment-and-purchase.d-flex {
    align-items: flex-start;
}

.checkout .payment-and-purchase .purchase-summary h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #404040;
}

.purchase-summary .summary p {
    padding: 12px 0;
    border-bottom: 1px solid #E2E2E2;
    color: #707070;
    font-size: 15px;
}

.purchase-summary .summary p:last-child {
    border-bottom: none;
}

.purchase-summary .summary span {
    color: #000000;
    text-align: right;
    margin-right: 0;
}

.confirm-subscription {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    background: #1197C4;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.payment-details-form input[type="text"],
.county-state .country select,
.county-state .state select {
    width: 100%;
    border: 1px solid #DFE5E8;
    padding: 8px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.payment-details-form input:focus,
.county-state .country select:focus ,
.county-state .state select:focus {
    outline: none;
}

.payment-details-form.f-auto .enter-payment-details {
    margin-right: 0;
    position: relative;
}

.source-form a {
    text-decoration: none;
    color: #A6A6A6;
    font-size: 13px;
}

.source-form {
    position: absolute;
    top: 0;
    right: 0;
}

.payment-details-form.f-auto label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

.payment-details-form .county-state .country,
.payment-details-form .county-state .state,
.payment-details-form .city-postal-code .city,
.payment-details-form .city-postal-code .postal-code {
    width: 50%;
}

.payment-details-form .county-state .country,
.payment-details-form .city-postal-code .city {
    margin-right: 10px;
}

.payment-details-form .county-state .state,
.payment-details-form .city-postal-code .postal-code {
    margin-left: 10px;
}

.billing-details {
    color: #4D4D4D;
    font-size: 17px;
    font-weight: 600;
    margin: 10px 0 5px 0;
}

/*-----Payment Success-----*/

.content-header-part .cancel-button {
    background: #fff;
    padding: 5px 8px;
    text-decoration: none;
    color: #353535;
    border: 1px solid #E2E2E2;
    border-radius: 3px;
    font-size: 13px;
}

.content-header-part {
    justify-content: space-between;
    align-items: center;
    margin: 20px 20px 25px 20px;
}

.package-list-wrapper .subscription .payment-success {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 100px 0;
}

.payment-success img {
    margin-bottom: 25px;
}

.payment-success .congratulation-message {
    color: #32485E;
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
}

.payment-success .congratulation-message .congratulatio {
    color: #48C17E;
    text-decoration: none;
}

.payment-success .congratulation-message span {
    text-decoration: underline;
}

