/* Banner */
.cn-banner, .cn-banner *, .cn-modal, .cn-modal * {
    box-sizing: border-box;
}
.cn-banner {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0 12px 0;
    transition: transform .6s ease .15s;
	border-top: 2px solid #666;
}
.cn-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0 34px 0 15px;
}
.cn-container p {
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    font-size: 12px;
    color: #666;
    flex: 1;
    padding: 0 52px 0 16px;
    margin: 0 0 16px 0;
}
.cn-container svg {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    max-width: 48px;
    fill: #666;
    margin: 4px 0 0 0;
}
.cn-container > div {
    flex: 0 0 158px;
    max-width: 158px;
}
.cn-container button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    transition: background .5s, border-color .5s, color .5s, box-shadow .5s;
	cursor: pointer;
	color: #fff;
	font-size: 13px;
    background: #abe87d;
    border-radius: 5px;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
	box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
	padding: 0.3em .7em 0.3em 0.7em;
    border: 10px solid transparent;
}
.cn-container button:nth-of-type(2) {
    margin-top: 5px;
}
#cn-accept {
    font-size: 15px;
    background: #abe87d;
}
#cn-accept:hover, #cn-save:hover {
	background: #abdc11 !important;
    border-color: #abdc11 !important;
}
#cn-settings {
    font-size: 13px;
    background: transparent;
	color: #666;
	box-shadow: none;
}
.cn-banner.cn-banner-hidden, .cn-init-fn {
    transform: translateY(100%);
    pointer-events: none;
}
/* Banner */

/* Modal */
.cn-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    width: 100%;
    height: 100%;
    z-index: 999900;
    overflow-x: hidden;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
	background: rgba(255,255,255, 0.97);
    transition: opacity .8s ease;
}
body.cn-modal-open {
    overflow: hidden!important;
}
.cn-modal-open .cn-modal-wrap {
    opacity: 1;
    pointer-events: auto;
}
.cn-modal {
    max-width: 1170px;
    padding: 150px 0 80px 0;
    margin: 0 auto;
}
.cn-modal input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.cn-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 12;
}
.cn-header span {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 35px;
    display: block;
}
.cn-header span {
    color: #dd7873;
    margin-bottom: 26px;
}
#cn-close {
    padding: 5px;
    cursor: pointer;
    background: transparent;
    display: inline-flex;
	border: none;
	margin-top: -10px;
}
#cn-close svg {
    width: 20px;
    height: 20px;
    fill: #dd7873;
}
.cn-content {
    background: #ddd;
    padding: 58px 5.6% 54px 6%;
    position: relative;
    z-index: 12;
	border-radius: 10px;
}
.cn-option-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    position: relative;
}
.cn-option-wrap .cn-checkbox {
    flex: 0 0 auto;
    margin-top: 7px;
}
.cn-text {
    flex: 1;
    padding: 0 80px 0 19px;
}
.cn-option-list {
    will-change: height, margin;
    display: none;
    margin-bottom: 35px;
}
.cn-option-title {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 25px;
    color: #666;
    margin-bottom: 18px;
}
.cn-text p {
    margin: 0 0 27px 0;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    font-size: 12px;
    color: #666;
}
.cn-details {
    padding: 5px 20px 5px 5px;
    margin: 4px 0 0 0;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    font-size: 14px;
    letter-spacing: 0.25px;
    color: #666;
    cursor: pointer;
    background: transparent;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    position: absolute;
    right: 0;
    top: 0;
	border: none;
}
.cn-details svg {
    position: absolute;
    display: block;
    pointer-events: none;
    right: 0;
    fill: #666;
    fill-opacity: .7;
    width: 10px;
    height: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    transition: .4s;
}
.cn-details-open .cn-details svg {
    transform: translateY(-50%) rotate(-180deg);
    fill-opacity: 1;
}
.cn-option-list th {
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 15px;
    color: #666;
}
.cn-option-list td {
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    font-size: 12px;
    color: #666;
    text-align: left;
    vertical-align: top;
}
.cn-option-list tr th {
    padding: 0 0 2px 0;
}
.cn-option-list tr th:first-child  {
    width: 144px;
}
.cn-option-list tr th:nth-child(2)  {
    width: 166px;
}
.cn-option-list tr td:nth-child(2), .cn-option-list tr td:nth-child(3) {
    padding: 15px 0 5px 0;
}

.cn-option-list.cn-description-list tr th {
    padding: 0 0 13px 0;
}
.cn-option-list.cn-description-list tr th:first-child {
    width: 180px;
    padding-right: 15px;
}
.cn-option-list.cn-description-list tr th:nth-child(2)  {
    width: auto;
}
.cn-option-list.cn-description-list tr td:first-child {
    padding: 0 15px 15px 0;
}
.cn-option-list.cn-description-list tr td:nth-child(2), .cn-option-list.cn-description-list tr td:nth-child(3) {
    padding: 0 0 15px 0;
}
.cn-option-list.cn-description-list tr:not(:last-child) td {
    padding: 0 0 15px 0;
}
#cn-save {
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-top: 24px;
	color: #fff;
	font-size: 15px;
    background: #abe87d;
    border-radius: 5px;
    font-weight: bold;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
	box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
	padding: 0.3em .7em 0.3em 0.7em;
    border: 10px solid transparent;
	transition: background .5s, border-color .5s;
}
.cn-option-wrap a {
    color: rgba(255, 255, 255, 0.7);
    transition: color .5s;
    text-decoration: none;
}
.cn-option-wrap a:hover, .cn-option-wrap a:focus, .cn-option-wrap a:active {
    text-decoration: none;
    color: #fff;
}
/* Modal */

/* Chechbox */
.cn-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 0;
}
.cn-trigger {
    position: relative;
    height: 20px;
    width: 37px;
    cursor: pointer;
}
.cn-trigger:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    background: #666;
    opacity: 0.35;
    border-radius: 7px;
    width: 34px;
    height: 14px;
    transition: .2s;
}
.cn-trigger:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #666;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.12), 0 0 2px rgba(0, 0, 0, 0.14);
    transition: .2s;
}
.cn-checkbox input:checked + .cn-trigger:after {
    left: 18px;
    background: #dd7873;
}
.cn-checkbox input:checked + .cn-trigger:before {
	background: #dd7873;
}
.cn-checkbox input:disabled + .cn-trigger {
    cursor: not-allowed;
}
/* Chechbox */



/* Response */
@media (max-width: 1199px) {
    .cn-modal {
        max-width: 960px;
    }
}
@media (max-width: 991px) {
    .cn-modal {
        max-width: 720px;
    }
}
@media (max-width: 767px) {
    .cn-modal {
        max-width: 85%;
    }
    .cn-container svg {
        display: none;
    }
    .cn-container p {
        line-height: 13px;
        font-size: 10px;
    }
    .cn-container {
        display: block;
    }
    .cn-container > div {
        display: flex;
    }
    .cn-container button {
        flex: 0 0 auto;
    }
    .cn-container button:nth-of-type(2) {
        margin: 0 0 0 5px;
    }
    #cn-settings, #cn-accept {
        font-size: 12px;
    }
}
@media (max-width: 375px) {
    .cn-option-wrap {
        display: block;
    }
    .cn-text {
        padding-left: 0;
    }
}
/* Response */
/* Tabs */
.cn-tabs-caption {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    margin-top: 0;
}
.form-table td fieldset .cn-tabs-caption li {
    margin: 0;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #555;
}
.form-table td fieldset .cn-tabs-caption li:not(:last-child) {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #ccc;
    background: #e5e5e5;
    margin-left: 8px;
    margin-bottom: -1px;
    margin-top: 10px;
}
.form-table td fieldset .cn-tabs-caption li:last-child {
    margin-left: 10px;
    margin-top: 10px;
}
.form-table td fieldset .cn-tabs-caption li:not(:last-child):hover {
    background: #fff;
}
.form-table td fieldset .cn-tabs-caption li.cn-active {
    border-bottom: 1px solid #f1f1f1;
    background: #f1f1f1!important;
    color: #000;
}
.cn-remove-tab, .cn-add-tab button, .cn-remove-option {
    border-radius: 100%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none!important;
}
.cn-remove-tab {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    margin-right: -2px;
}
.cn-remove-tab svg {
    width: 10px;
    height: 10px;
    fill: #5d6164;
    pointer-events: none;
}
.cn-remove-tab:hover, .cn-remove-tab:hover, .cn-remove-tab:hover {
    background: #dcdcdc;
}
.cn-add-tab button {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.cn-add-tab button svg {
    width: 12px;
    height: 12px;
    fill: #3b3f42;
    pointer-events: none;
}
.cn-add-tab button:hover, .cn-add-tab button:hover, .cn-add-tab button:hover {
    background: #dcdcdc;
}
.cn-tabs-content {
    display: none;
}
.cn-tabs-content.cn-active {
    display: block;
}
.form-table td .cn-label {
    display: block;
    margin: .5em 0 .25em;
}
.cn-tabs-content .regular-text, .cn-tabs-content textarea.large-text {
    width: 100%;
}
.form-table td fieldset .cn-subtitle {
    line-height: 1.3;
    font-weight: 600;
    color: #23282d;
    font-size: 16px;
    margin: .5em 0 .25em;
}
/* Tabs */

/* Options */
.cn-options-caption {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.cn-options-caption > div {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 10px;
    box-sizing: border-box;
}
.cn-option-list {
    position: relative;
    margin-top: 20px;
}
.cn-remove-option {
    font-size: 14px;
    color: #0073aa;
    position: absolute;
    top: 8px;
    right: 0;
    display: none;
}
.cn-remove-option:hover, .cn-remove-option:focus, .cn-remove-option:active {
    color: #00a0d2;
}
.cn-remove-option svg {
    width: 10px;
    height: 10px;
}
.cn-tabs-content > .cn-option-list ~ .cn-option-list .cn-remove-option {
    display: block;
}
/* Options */