html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.paddingLeftLg, .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper {
    padding-left: 10px;
}

.paddingRightLg, .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper {
    padding-right: 10px;
}

.thothSidePopupcontent > .content {
    width: 100%;
    height: calc(100% - 23px);
}

    /*.thothSidePopupcontent > .content > .popupDataWrapper {
        width: 100%;
        height: calc(100% - 215px);
        overflow-y: auto;
    }*/

        .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 {
            width: 100%;
        }

            .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .head {
                width: 100%;
                box-sizing: border-box;
            }

                .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .head > h1 {
                    font-weight: 500;
                }

            .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper {
                width: 100%;
                /*background: #ecf2fc;*/
                box-sizing: border-box;
                overflow-y: auto;
            }

                .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul {
                    width: 100%;
                    display: flex;
                }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul:last-child {
                        margin-bottom: 0;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li {
                        background: #fff;
                        border: 1px solid #EFF1F4;
                        box-sizing: border-box;
                        border-radius: 5px;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul.highlights > li {
                        background: #4e73f5;
                        color: white;
                        font-weight: 800;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li.highlights {
                        background: #4e73f5;
                        color: white;
                        font-weight: 800;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li:last-child {
                        margin-right: 0;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li > .contentType1 {
                        width: 100%;
                    }

                        .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li > .contentType1 > .head {
                            width: 100%;
                            display: flex;
                            align-items: center;
                        }

                            .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li > .contentType1 > .head > h1 {
                                font-weight: 500;
                            }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > li > .contentType2 {
                        width: 100%;
                        display: flex;
                        align-items: center;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > .col100 {
                        width: 100%;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > .col50 {
                        width: 50%;
                    }

                    .thothSidePopupcontent > .content > .popupDataWrapper > .dataType1 > .contentWrapper > ul > .col33 {
                        width: 33.3%;
                    }

.thothSidePopupcontent > .popupTitle {
    width: 100%;
}

    .thothSidePopupcontent > .popupTitle > h1 {
        font-weight: 600;
    }

.popupTitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

    .popupTitle h1 {
        font-size: 18px;
        font-weight: 700 !important;
    }

.history-card {
    background: #f9fbfe;
    border: 1.5px solid #e2e7f1;
    border-radius: 14px;
    margin: 16px 0;
    padding: 20px 18px 18px 18px;
    box-shadow: 0 4px 16px rgba(50, 100, 170, 0.06);
    transition: box-shadow 0.2s;
    font-size: 11px;
}

    .history-card:hover {
        box-shadow: 0 8px 20px rgba(50, 100, 170, 0.14);
    }

.history-table {
    width: 100%;
    border-collapse: collapse;
}

    .history-table th, .history-table td {
        padding: 5px;
    }

    .history-table th {
        background: #f5f7fa;
        color: #4269b5;
        font-weight: 600;
    }

    .history-table tr {
        border-bottom: 1.2px solid #e0e7ef;
    }

        .history-table tr:last-child {
            border-bottom: none;
        }

button#loadMoreBtn {
    outline: none;
    background-color: #4269b5;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Spinner */

.loaderBox .loader {
    width: 37px;
    height: 37px;
    border: 5px solid #6f8ce1;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loaderBox {
    display: none;
    text-align: center;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 