﻿.default-btn {
    background: #5986e1;
    color: #fff;
    padding: 5px 35px;
    margin: 0.6rem auto;
    font-weight: 700;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13pt;
    min-width: 15rem;
    text-align: center;
}

@media only screen and (max-width:768px) {
    .main-box {
        padding: 1rem 1rem;
    }

    .condition-box h4 {
        font-size: 10pt;
    }

    .checkbox-inline, .radio-inline, .checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
        margin-left: 5px;
        padding-left: 5px;
    }
}

.pdfobject-container {
    height: 30rem;
    border: 1rem solid rgba(0,0,0,.1);
}

.loader-main {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    z-index: 99999999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.w-33 {
    width: 33%;
}

.nxt-prev-btn {
    background: transparent;
    border-radius: 100%;
    margin-left: auto;
    margin-right: 10px;
    border: 1px solid #007bff;
    color: #007bff !important;
    width: 25px;
    height: 25px;
    text-align: center;
    display: block;
}

.nxt-btn {
    transform: rotate(180deg);
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disable {
    pointer-events: none;
    cursor: default;
    background: #88acf6 !important;
}

.compose-box div {
    padding-right: 0px;
}

.compose-box ul {
    list-style: none;
    padding: 1rem 0rem;
}

    .compose-box ul li {
        cursor: pointer;
    }

.tag-list li:before {
    content: '<';
}

.tag-list li:after {
    content: '>';
}
