@charset "UTF-8";
/*custom css for TinyMce Editor tool*/
/*----------------------------------
	Text align
----------------------------------*/
.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

/*----------------------------------
	List
----------------------------------*/
.unorder-list-normal,
.unorder-list-side,
.order-list,
.order-list-side,
.order-list-circle,
.order-list-roman,
.order-list-single-brac {
    margin: 1.5rem 0;
    padding-left: 2em;
    font-size: 0.937rem;
}

.unorder-list-normal > li,
.unorder-list-side > li,
.order-list > li,
.order-list-side > li,
.order-list-circle > li,
.order-list-roman > li,
.order-list-single-brac > li {
    margin: 0.7em 0;
}

.unorder-list-normal {
    list-style: none;
}

.unorder-list-normal > li {
    position: relative;
}

.unorder-list-normal > li:before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: -1.15em;
    display: block;
    width: 0.3em;
    height: 0.3em;
    border-radius: 0.3em;
    background: rgb(150, 10, 50);
    font-weight: 500;
}

.unorder-list-side {
    padding-left: 0;
    list-style: none;
}

.unorder-list-side > li {
    position: relative;
    display: inline-block;
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.unorder-list-side > li:before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: -1em;
    display: block;
    width: 0.3em;
    height: 0.3em;
    border-radius: 0.3em;
    background: rgb(150, 10, 50);
    font-weight: 500;
}

.order-list-side {
    list-style: none;
    counter-reset: paren;
}

.order-list-side > li {
    position: relative;
}

.order-list-side > li:before {
    position: absolute;
    left: -2em;
    counter-increment: paren;
    content: '(' counter(paren) ')';
    font-weight: 500;
}

.order-list-circle {
    list-style: none;
    counter-reset: circle;
}

.order-list-circle > li {
    margin: 0.5em 0;
}

.order-list-circle > li:before {
    counter-increment: circle;
    content: counter(circle);
    display: inline-block;
    margin: 0 0.6em 0 -2em;
    padding-top: 0.25em;
    width: 1.4em;
    height: 1.4em;
    border: solid 1px rgb(60, 60, 60);
    border-radius: 0.7em;
    font-size: 0.7rem;
    line-height: 0.7em;
    text-align: center;
    vertical-align: 20%;
    letter-spacing: -0.05em;
    text-indent: -0.05em;
}

.order-list-roman {
    list-style: none;
    counter-reset: roman_numerals;
}

.order-list-roman > li {
    position: relative;
}

.order-list-roman > li:before {
    position: absolute;
    left: -2em;
    counter-increment: roman_numerals;
    content: '(' counter(roman_numerals, lower-roman) ')';
    font-weight: 500;
}

.order-list-single-brac {
    list-style: none;
    counter-reset: r_paren;
}

.order-list-single-brac > li {
    position: relative;
}

.order-list-single-brac > li:before {
    position: absolute;
    left: -2em;
    counter-increment: r_paren;
    content: counter(r_paren) ')';
    font-weight: 500;
}

/*----------------------------------
	Table
----------------------------------*/
.table-normal {
    margin: 40px 0;
    width: 100%;
    border-collapse: collapse;
    font-size: 0.937rem;
    line-height: 1.5;
    text-align: left;
    table-layout: fixed;
}

.table-normal th,
.table-normal td {
    padding: 0.5em 0.8em;
    border: solid 1px rgb(180, 180, 180);
    vertical-align: middle;
}

.table-normal th {
    background: rgb(244, 241, 242);
    font-weight: 700;
    text-align: center;
}

.table-normal td {
    background: rgb(255, 255, 255);
}

.table_scroll {
    position: relative;
    margin: 1.5rem 0;
    padding: 10px 7px 1px;
    overflow: scroll visible;
    overflow-x: scroll;
    overflow-y: visible;
    border: solid 1px rgb(250, 245, 250);
    border-radius: 4px;
}

.table_scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 740px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.65) inset;
    border-radius: 4px;
    pointer-events: none;
}

.table_scroll::before {
    content: 'Scroll ⇒';
    position: absolute;
    top: 0;
    right: -4px;
    padding: 0 12px;
    background: rgb(240, 140, 150);
    border-radius: 0 0 4px 4px;
    font-size: 0.937em;
    font-weight: 700;
    color: rgb(255, 255, 255);
    animation: ks-blink 0.8s ease-in infinite alternate;
    z-index: 1;
}

@keyframes ks-blink {
    0% {
        right: -4px;
        background: rgb(200, 100, 110);
    }
    100% {
        right: -10px;
        background: rgb(250, 170, 170);
    }
}
.table_scroll table {
    width: 730px;
}

.ks-table_note {
    width: 730px;
}

/* Under Construction
---------------------------------*/
.under-construction {
    margin: 100px 100px;
    padding: 0.8em 0;
    width: 70%;
    max-width: 700px;
    border-top: double 3px rgb(200, 120, 160);
    border-bottom: double 3px rgb(200, 120, 160);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 700;
    color: rgb(110, 110, 110);
}

/*----------------------------------
	Decoration
----------------------------------*/
.decoration-broken-line {
    margin: 2.5rem auto;
    border: none;
    border-top: dotted 2px rgb(160, 140, 140);
}

.decoration-dashed {
    margin: 1.75rem auto;
    border: none;
    border-top: dotted 1px rgb(160, 140, 140);
}

/*----------------------------------
	Accordion box
----------------------------------*/
.accordion-box {
    margin-bottom: 2rem 0 0;
}

.accordion-box > .ac_button {
    position: relative;
    display: block;
    margin: 2rem 0 0;
    padding: 0.5em 0.5em 0.5em 2.5em;
    background: rgb(255, 255, 255);
    border: solid 1px rgb(131, 3, 62);
    font-size: 1.125rem;
    font-weight: 700;
    color: rgb(131, 3, 62);
    line-height: 1.4;
    cursor: pointer;
    transition: 0.1s ease-out;
    transition-property: background, color;
}

.accordion-box > .ac_button::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 20px;
    border-top: solid 2px rgb(131, 3, 62);
}

.accordion-box > .ac_button::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 20px;
    border-top: solid 2px rgb(131, 3, 62);
    transform: rotate(90deg);
    transition: transform 0.2s ease-out;
}

.wrapper:not(.ks-touch_device) .accordion-box > .ac_button:not(.clicked):hover {
    background: rgb(110, 130, 170);
    color: rgb(255, 255, 255);
}

.wrapper:not(.ks-touch_device) .accordion-box > .ac_button:not(.clicked):hover::after {
    transform: rotate(-90deg);
}

.accordion-box > .ac_button.clicked {
    background: rgb(131, 3, 62);
    color: rgb(255, 255, 255);
}

.accordion-box > .ac_button.clicked::after {
    transform: rotate(0deg);
    border-color: rgb(255, 255, 255);
}

.accordion-box > .ac_content {
    padding: 0.5em 5px 0.8em 10px;
    width: 100%;
    display: none;
}

/*----------------------------------
	Button
----------------------------------*/
/*-- Single --*/
.button-large {
    color: #02275f !important;
    background: #ffffff !important;
    border: 1px solid #02275f;
    padding: 10px !important;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: all ease 0.5s;
    border-radius: 50px;
    text-decoration: none;
    max-width: 260px;
    width: 100%;
    cursor: pointer;
}

.button-large:hover {
    color: #ffffff !important;
    background: #02275f !important;
    opacity: 0.8;
}

.button-small {
    color: #ffffff !important;
    background: #02275f;
    border: 1px solid #02275f;
    padding: 10px !important;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: all ease 0.5s;
    border-radius: 50px;
    text-decoration: none;
    max-width: 260px;
    width: 100%;
    cursor: pointer;
}

.button-small:hover {
    opacity: 0.8;
}

/*-- Multi --*/
.button-multiple-side,
.button-two-rows,
.button-three-rows,
.button-four-rows,
.btn-two-hor,
.btn-two-horz-list {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem auto;
    padding: 0;
    text-align: center;
    list-style: none;
    z-index: 0;
}

.button-multiple-side li,
.button-two-rows li,
.button-three-rows li,
.button-four-rows li,
.btn-two-hor li {
    display: flex;
    margin: 0;
}

.button-multiple-side li a,
.button-two-rows li a,
.button-three-rows li a,
.button-four-rows li a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0.5em 0;
    padding: 0.8em 1em 0.8em 0.8em;
    width: 100%;
    background: rgb(255, 255, 255);
    border: solid 1px #02275f;
    font-weight: 500;
    color: #02275f;
    line-height: 1.4;
    text-decoration: none;
    transition: 0.2s ease-out;
    transition-opacity: background, color;
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
}
.button-multiple-side a:hover,
.button-two-rows a:hover,
.button-three-rows a:hover,
.button-four-rows a:hover {
    background: #02275f;
    color: rgb(255, 255, 255);
}

.button-multiple-side li.disabled a,
.button-two-rows li.disabled a,
.button-three-rows li.disabled a,
.button-four-rows li.disabled a {
    pointer-events: none;
    cursor: default;
    border-color: rgb(204, 204, 204);
    background: rgb(204, 204, 204);
}

.button-multiple-side li {
    width: 100%;
}

.button-two-rows li {
    width: 48%;
}

.button-three-rows li {
    width: 32%;
}

.button-four-rows li {
    width: 23%;
}

.btn-two-hor {
    max-width: 700px;
    padding-left: 10px;
    padding-right: 10px;
}

.btn-two-hor li {
    width: 48.5%;
}

.btn-two-hor li a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0.5em 0;
    padding: 0.8em 1em;
    width: 100%;
    background: rgb(255, 255, 255);
    border: solid 1px #02275f;
    font-size: 1.625rem;
    font-weight: 500;
    color: #02275f;
    line-height: 1.4;
    text-decoration: none;
    transition: 0.2s ease-out;
    transition-opacity: background, color;
    z-index: 1;
    border-radius: 50px;
    cursor: pointer;
}

.btn-two-hor li a:hover {
    background: #02275f;
    color: rgb(255, 255, 255);
}

.btn-two-hor li.disabled a {
    pointer-events: none;
    cursor: default;
    border-color: rgb(204, 204, 204);
    background: rgb(204, 204, 204);
}

.btn-two-horz-list {
    justify-content: center;
    margin: 1.5rem 0;
}

.btn-two-horz-list li {
    margin: 0.5em 0.8rem;
}

.btn-two-horz-list li a {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0.2em 1.2em 0.2em 0.1em;
    width: 100%;
    border-bottom: dotted 1px #02275f;
    font-size: 1.125rem;
    font-weight: 500;
    color: inherit;
    line-height: 1.4;
    text-decoration: none;
    transition: 0.2s ease-out;
    transition-opacity: background, color;
    z-index: 1;
    cursor: pointer;
}

.btn-two-horz-list li a:hover {
    background: #02275f;
    color: rgb(255, 255, 255);
}

.btn-two-horz-list li a:hover::after {
    bottom: 0;
    border-color: rgb(255, 255, 255) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
