/* From uiverse.io by @Mike11jr */

.scene {
    width: 15em;
    justify-content: center;
    align-items: center;
}

.cube {
    color: #cccccc;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.85s cubic-bezier(.17, .67, .14, .93);
    transform-style: preserve-3d;
    transform-origin: 100% 50%;
    width: 15em;
    height: 4em;
}

.cube:hover {
    transform: rotateX(-90deg);
}

.sidetop {
    box-sizing: border-box;
    position: absolute;
    display: inline-block;
    height: 4em;
    width: 10em;
    text-align: center;
    text-transform: uppercase;
    padding-top: 0.5em;
    font-weight: bold;
}

.side {
    box-sizing: border-box;
    position: absolute;
    display: inline-block;
    height: 4em;
    width: 10em;
    text-align: center;
    text-transform: uppercase;
    padding-top: 1.5em;
    font-weight: bold;
}

.top {
    background: #f8f673;
    color: #222229;
    transform: rotateX(90deg) translate3d(0, 0, 2em);
    box-shadow: inset 0 0 0 5px #949494;
}

.frontIs1 {
    background: #4ff5b0;
    color: rgb(0, 0, 0);
    box-shadow: inset 0 0 0 5px #949494;
    transform: translate3d(0, 0, 2em);
}


/* dropdown button */

.mainmenubtn {
    background-color: skyblue;
    color: #000000;
    border: none;
    cursor: pointer;
    padding: 20px;
    margin-top: 20px;
}

.mainmenubtn:hover {
    background-color: blue;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-child {
    display: none;
    background-color: skyblue;
    min-width: 200px;
}

.dropdown-child a {
    color: blue;
    padding: 20px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-child {
    display: block;
}


/* Glow Button */
.button {
    height: 50px;
    width: 200px;
    background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
    border-radius: 25px;
    animation: animate 1.5s linear infinite;
    border: none;
    cursor: pointer;
}


.button,
.display,
#msg {
    transition: 0.3s;
}

.button:active .display {
    background: rgba(255, 255, 255, 0.5);
}

.button:active .display #msg {
    -webkit-text-fill-color: #1b1b1b;
}

.button:hover {
    scale: 1.15;
    animation: animate 0.7s linear infinite;
    transform: translateY(-10px);
}

.button .display,
.button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button .display {
    z-index: 1;
    background-color: #1b1b1b;
    height: 42.2px;
    width: 190.5px;
    border-radius: 20px;
    text-align: center;
}

.button .display #msg {
    line-height: 42.5px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes animate {
    100% {
        filter: hue-rotate(360deg);
    }
}

.button span {
    height: 100%;
    width: 100%;
    background: inherit;
    border-radius: 25px;
}

.button span:first-child {
    filter: blur(15px);
}

.button span:last-child {
    filter: blur(15px);
    transition: 0.3s;
}

.button:hover span:last-child {
    width: 110%;
    height: 120%;
}

/* cara pakai Glow Button */
/* <button title="Klik untuk mengajukan SPM" class="button" data-bs-toggle="modal" data-bs-target="#ajukanSPM">
    <div class="display">
        <div id="msg"><i class="fa fa-fw fa-plus-square"></i> Ajukan SPM</div>
    </div>

    <span></span>
    <span></span>
</button> */

/* / Glow Button */


/* Pulse Button */
.button_pulse {
    display: flex;
    justify-content: center;
    color: #fff;
    height: 42.2px;
    width: 240px;
    border-radius: 25px;
    background: linear-gradient(30deg, #ff8200 20%, #ff2600 80%);
    transition: all 0.3s ease-in-out 0s;
    box-shadow: #da4601d0 0px 0px 0px 0px;
    animation: 1.1s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
    align-items: center;
    border: 0;
}

.button_pulse span {
    font-weight: bolder;
}

.button_pulse:is(:hover, :focus) {
    transform: scale(1.2);
}

@keyframes pulse {
    100% {
        box-shadow: 0 0 0 25px #ff5e0000;
    }
}

/* /Pulse Button */


/* Plus */

.actionBtn21 {
    display: inline-block;
    position: relative;
    margin: auto;
    text-transform: uppercase;
    text-decoration: none;
}

.actionBtn21:after {
    content: '';
    display: block;
    clear: both;
}

.actionBtn21 .ico-plus2 {
    display: block;
    position: relative;
    float: left;
    width: 33px;
    height: 33px;
    margin-right: 8px;
    border: 1px solid #435ebe;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: background .3s ease-in-out, transform .3s ease-in-out;
    -webkit-transition: background .3s ease-in-out, transform .3s ease-in-out;
    -moz-transition: background .3s ease-in-out, transform .3s ease-in-out;
}

.actionBtn21:hover .ico-plus2 {
    background: #435ebe;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.actionBtn21:hover .ico-plus2 span {
    background: #fff;
}

.actionBtn21 .ico-plus2 span {
    display: block;
    position: absolute;
    left: 8px;
    top: 50%;
    margin-top: -1px;
    width: 15px;
    height: 1px;
    background: #435ebe;
    transition: background .3s ease-in-out;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
}

.actionBtn21 .ico-plus2 span:first-child {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}

.actionBtn21 .lb {
    display: block;
    position: relative;
    float: left;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #031555;
    font-family: 'Montserrat', sans-serif;
}

.actionBtn21 .lb::after {
    content: '';
    display: block;
    position: absolute;
    left: 1px;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #435ebe;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform-origin: left;
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    transition: transform .3s ease-in-out;
    -webkit-transition: transform .3s ease-in-out;
    -moz-transition: transform .3s ease-in-out;
}

.actionBtn21:hover .lb::after {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
}


/* <a href="javascript:;" class="code_view actionBtn21">
	<i class="ico-plus2">
	<span></span>
	<span></span>
	</i>
	<span class="lb">PREVIEW</span>
</a> */


/* /Plus */


/* Slide Button */

.BtnSlideIs {
    overflow: hidden;
    display: inline-block;
    position: relative;
    height: 40px;
    padding-left: 10px;
    padding-right: 40px;
    background-color: #435ebe;
    line-height: 40px;
    color: #d2d2d2;
    text-align: center;
    text-transform: uppercase;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    text-transform: none;
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, .2);
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
}

.BtnSlideIs .txtIs {
    display: block;
    padding: 0 20px 0 10px;
    border-right: 1px solid #708aeb;
    white-space: nowrap;
    transition: color .5s;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
}

.BtnSlideIs .btn_icoIs {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-left: 1px solid #50504a;
}

.BtnSlideIs .btn_icoIs span {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 15px;
    box-sizing: border-box;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transition: transform .5s ease-out .5s;
    -webkit-transition: transform .5s ease-out .5s;
    -moz-transition: transform .5s ease-out .5s;
}

.BtnSlideIs .btn_icoIs span img {
    vertical-align: top;
    opacity: .5;
    transition: all .2s ease-out .3s;
    -webkit-transition: all .2s ease-out .3s;
    -moz-transition: all .2s ease-out .3s;
}

.BtnSlideIs .txtIs_slide {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 41px;
    width: 0;
    height: 100%;
    background-color: #6680db;
    color: #ffdd1a;
    text-align: left;
    text-indent: 10px;
    white-space: nowrap;
    box-shadow: 1px 0px 6px rgba(100, 100, 238, 0.5) inset, -1px 0px 6px rgba(132, 132, 241, 0.5) inset;
    -webkit-box-shadow: 1px 0px 6px rgba(144, 144, 238, 0.5) inset, -1px 0px 6px rgba(114, 114, 233, 0.5) inset;
    -moz-box-shadow: 1px 0px 6px rgba(132, 132, 243, 0.5) inset, -1px 0px 6px rgba(130, 130, 235, 0.5) inset;
    transition: width .6s;
    -webkit-transition: width .6s;
    -moz-transition: width .6s;
}

.BtnSlideIs:hover {
    padding-right: 141px;
}

.BtnSlideIs:hover .txtIs {
    color: #ffd700;
}

.BtnSlideIs:hover .txtIs_slide {
    width: 100px;
}

.BtnSlideIs:hover .btn_icoIs span {
    transform: rotateY(180deg);
    -webkit-transform: -webkit-rotateY(180deg);
    -moz-transform: rotateY(180deg);
}

.BtnSlideIs:hover .btn_icoIs span img {
    opacity: 1;
}


/* <a href="javascript:;" class="code_view BtnSlideIs">
	<span class="txtIs">slide</span>
	<span class="txtIs_slide">text</span>
	<span class="btn_icoIs">	
	<span>
		<img src="http://css3studio.com/images/effect_ex/ico_play_2.png" alt="" />
	</span>
	</span>
</a> */


/* /Slide Button */