@charset "utf-8";

.section {
    width: 840px;
    padding: 20px;
}
.sectionItems {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    width: 840px;
    margin-bottom: 40px;
}

.sectionItems .title {
    font-size: 20px;
    margin-bottom: 20px;
	font-weight: bold;
}
.sectionItems .txt {
	overflow: auto;
    font-size: 14px;
}
.section .txt a {
    color: #000;
    text-decoration: underline;
}

.sepDot {
    border-top: dashed 1px #ccc;
    padding-top: 8px;
}

#consentAction {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -ms-flex-wrap:nowrap;
    flex-wrap:nowrap;
    align-items: center;
    justify-content: center;
}

#consentBtn {
    background-color: #fff;
    font-size: 13px;
    color: #333;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border: solid 1px #ccc;
    border-radius: 4px;
    margin-left: 24px;
    padding: 4px 12px;
    cursor: pointer;
}

#notConsentBtn {
    background-color: #fff;
    font-size: 13px;
    color: #333;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    border: solid 1px #ccc;
    border-radius: 4px;
    margin-left: 24px;
    padding: 4px 12px;
    cursor: pointer;
}


@media only screen and (min-width:641px) and (max-width:999px) {
    .section {width: 80%;}
    .sectionItems {margin: 0 auto 40px;}
}

@media only screen and (max-width: 640px) {
    .section {
        width: 80%;
        margin: 0 auto;
        padding: 4vw;
    }
    .sectionItems {
        width: 100%;
        margin: 0 auto 6vw;
    }
    .sectionItems .title {
        font-size: 5vw;
        margin-bottom: 4vw;
    }
    .sectionItems .txt {
		overflow: auto;
		margin-bottom: 4vw;
	    font-size: 12px;
	}
    .sepDot {padding-top: 1.5vw;}

}

@media only screen and (max-width: 320px) {
    .sectionItems .txt {
		word-break: break-all; 
	}
}