.pwcmb-widget__close {
	display: none;
}

.pwcmb {
    box-sizing: border-box;
}
.pwcmb * {
    box-sizing: border-box;
}

.pwcmb {
    position: fixed;
    z-index: 601;
    background: white;
    width: 100%;
    left: 0;
    transition: top 0.25s;
}

.js-show.pwcmb--top_overlay,
.js-show.pwcmb--top_push {
    top: 0px;
}

.pwcmb--bottom_overlay {
    bottom: -400px;
}

.js-show.pwcmb--bottom_overlay {
    bottom: 0px;
}

.pwcmb-widget {
    position: absolute;
    width: 100%;
    padding: 20px;
    transition: 0.25s;
    background: white;
}

.pwcmb--bottom_overlay .pwcmb-widget { bottom: -9999px; }
.pwcmb--bottom_overlay .js-show.pwcmb-widget {
    bottom: 0;
}
.pwcmb--top_overlay .pwcmb-widget { top: -9999px; }
.pwcmb--top_overlay .js-show.pwcmb-widget {
    top: 0;
}

.pwcmb-widget__close {
    visibility: hidden;
    cursor: pointer;
}

.pwcmb-widget__close::before {
    content: '×';
    visibility: visible;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    overflow: hidden;
}

.pwcmb-widget__copy {
    padding-right: 20px;
}

.pwcmb-widget__title {
    font-weight: bold;
}

.pwcmb-widget__row-label { font-weight: bold; }
.pwcmb-widget__row-text { display: inline; }
.pwcmb-widget__row-text:before { content: ' - '; }

.pwcmb-widget__actions {
    white-space: nowrap;
}

.pwcmb-widget button {
	font-size: 16px;
	font-weight: bold;
    white-space: nowrap;
	display:block;
	padding:10px 15px;
	background-color:#0020CB;
	display:inline-block;
	color:#fff;
	border:none;
	outline:none;
	border-radius:10px;
	cursor:pointer;
}

.js-pwcmb-notice-toggle {
    cursor: pointer;
}

.pwcmb-option-wrapper {
    position: relative;
}

.pwcmb-widget__text p {
	font-size: 14px;
}

@media screen and (max-width: 767px) {
    .pwcmb-widget__inner {
        display: flex;
        flex-direction: column;
    }
    .pwcmb-widget__row-label,
    .pwcmb-widget__text {
        font-size: 14px;
    }

    .pwcmb-widget__actions {
        padding-top: 20px;
    }

}

@media screen and (min-width: 768px) {
    .pwcmb-widget__inner {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .pwcmb-widget__actions {
        margin-left: auto;
    }

}