.card {
    max-width: 100% !important;
}

.hidden {
    display: none;
}


.container {
    font-family: "Roboto";
    width: 600px;
    margin: 30px auto 0;
    display: block;
    background: #fff;
    padding: 10px 50px 50px;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
}

h2 small {
    font-weight: normal;
    color: #888;
    display: block;
}

.footer {
    text-align: center;
}

.footer a {
    color: #53b2c8;
}

/* form input css start */
.post-input-group {
    position: relative;
    margin-bottom: 45px;
}

.post-input-group input {
    font-size: 18px;
    padding: 10px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
}

.post-input-group input:focus {
    outline: none;
}

/* LABEL  */
.post-input-group label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.post-input-group input:focus~label,
.post-input-group input:valid~label {
    top: -20px;
    font-size: 14px;
    color: #5264ae;
}

/* BOTTOM BARS  */
.post-input-group.bar {
    position: relative;
    display: block;
    width: 300px;
}

.post-input-group.bar:before,
.post-input-group.bar:after {
    content: "";
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #5264ae;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.post-input-group.bar:before {
    left: 50%;
}

.post-input-group.bar:after {
    right: 50%;
}

/* active state */
.post-input-group input:focus~.bar:before,
.post-input-group input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER  */
.post-input-group.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.post-input-group input:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264ae;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264ae;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264ae;
    }

    to {
        width: 0;
        background: transparent;
    }
}


/* form input css end */

/*------------------------ Submit Button Css Start ----------------------------------*/
.submit-btn-section {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

button {
    margin: 20px;
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

/* 12 */
.btn-12 {
    position: relative;
    right: 20px;
    bottom: 20px;
    border: none;
    box-shadow: none;
    width: 130px;
    height: 40px;
    line-height: 42px;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: rgb(0, 172, 238);
    background: linear-gradient(0deg, rgba(0, 172, 238, 1) 0%, rgba(2, 126, 251, 1) 100%);
    display: block;
    position: absolute;
    width: 130px;
    height: 40px;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-12 span:nth-child(1) {
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2) {
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

/*------------------------ Submit Button Css End ----------------------------------*/


/*--------------------- Tabs According Start ---------------------------- */

summary {
    display: block;
}

summary::-webkit-details-marker {
    display: none;
}

.post-section-item:nth-of-type(n + 2) {
    margin-top: 32px;
}

.post-section-question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    color: white;
    background-color: #4b7cb6;
    cursor: pointer;
}

.post-section-icon {
    display: block;
    flex-shrink: 0;
    position: relative;
    width: 16px;
    transform-origin: center;
}

.post-section-icon::after {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
    transform: translateY(-80%) rotate(45deg);
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}

.is-opened .post-section-icon::after {
    transform: translateY(-25%) rotate(-135deg);
}

.post-section-answer {
    overflow: hidden;
}

.post-section-answer-inner {
    padding: 16px 32px;
    border: 2px solid #4b7cb6;
    border-top: none;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.l-inner {
    margin: 0 auto;
    width: 100%;

}

/*--------------------- Tabs According End ---------------------------- */

/*------------------ Select Option Style Start ----------------------- */

.post-options {
    width: 70%;
    padding: 10px;
}

.post-options.opened {
    overflow-y: scroll;
}

.option {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    transition: all 300ms;
}

.option:nth-child(1) {
    border-radius: 15px;
}



.message {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: 60px;
    position: absolute;
    right: -255px;
    bottom: 5vh;
    animation: showMessage ease-out 5s;
}

.message.success {
    background-color: rgb(184, 255, 112);
}

/* .message.danger {
    background-color: crimson;
} */

@keyframes showMessage {

    0%,
    100% {
        right: -255px
    }

    10% {
        right: 0
    }

    90% {
        right: 0;
    }
}

select#hide-option {
    width: 10%;
}

.post-args-container {
    width: 100%;
}

.post-args-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-args-label {
    width: 30%;
}

.post-args-row .post-input-group {
    margin-top: 15px;
}

/*------------------ Select Option Style End ----------------------- */



/*------------------ Checkbox Switch Style Start ----------------------- */
label {
    display: flex;
    align-items: center;
}

.post-supports-switch {
    opacity: 0;
}

/* ---- toggle background in active or not active mode ---- */
.post-supports-switch:checked~span {
    background: #4b7cb6;
}

.post-supports-switch:checked~span:after {
    left: 45px;
    background: whitesmoke;
}

.post-supports-switch:checked~span:active::after {
    left: 17px;
    background: whitesmoke;
}

.post-supports-switch:not(:checked)~span:active {
    background: #a3a3a3;
}

.post-supports-switch:not(:checked)~span:active::after {
    background: rgb(248, 248, 248);
}

.toggle_background {
    display: flex;
    align-items: center;
    width: 80px;
    height: 32px;
    position: relative;
    cursor: pointer;
    background: #babacc;
    border-radius: 2em;
    border: 2px transparent solid;
    transition: all 0.3s;
}

/* ---- toggle switching cricle design code ---- */
.toggle_background::after {
    content: "";
    display: flex;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0px;

    border-radius: 50px;
    background: #f0f5f9;
    transition: all 0.3s;
    box-shadow: 2px 2px 5px rgba(110, 110, 110, 0.253);
}

span:active:after {
    width: 70%;
}

/* circle and vertical line in toggle background code */
.circle-icon {
    position: absolute;
    right: 15%;
    border: solid 2px rgb(95, 95, 95);
    border-radius: 50%;
    width: 5px;
    height: 5px;
}

.vertical_line {
    position: absolute;
    left: 22%;
    background: rgb(241, 241, 241);
    width: 2px;
    height: 8px;
}

/*------------------ Checkbox Switch Style End ----------------------- */