/*your custom css goes here*/
.flex-card-wrapper {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 767px) {
    .flex-card-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.flex-card {
    flex-basis: 20%;
}

@media screen and (max-width: 767px) {
    .flex-card {
        flex-basis: 100%;
    }
}

.card-overlay {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.card-overlay::before {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4affc3;
    right: 0;
    top: 0;
    /* z-index: 9; */
}

.shape-1,
.shape-2 {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #ffffff33;
    border-radius: 50%;
}

.large-shape-1,
.large-shape-2 {
    width: 300px;
    height: 300px;
}

.shape-1 {
    top: -25%;
    right: -20%;
}

.shape-2 {
    bottom: -45%;
    right: -5%;
}

.large-shape-1 {
    top: -15%;
    right: -30%;
}

.large-shape-2 {
    bottom: -40%;
    right: -5%;
}

/* Login Page Start */
.login-card {
    position: relative;
}

.login-card .upper-shape {
    position: absolute;
    top: 0;
    width: 100%;
}

.login-card .lower-shape {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.login-card .card-body {
    padding: 100px 100px 100px 100px;
}

.login-card .card-body .login-content {
}

.login-card .card-body .login-content .left {
    position: relative;
}

.login-card .card-body .login-content .right {
    position: relative;
}

@media (max-width: 414px) {
    .login-card .card-body {
        padding: 60px 60px 60px 60px;
    }
}

@media (min-width: 415px) and (max-width: 575px) {
    .login-card .card-body {
        padding: 60px 60px 60px 60px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .login-card .card-body {
        padding: 80px 80px 80px 80px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .login-card .card-body {
        padding: 80px 80px 80px 80px;
    }
}

/* Login Page End */

/*style for log view modal*/
.log-container {
    margin-bottom: 10px;
    padding: 5px;
    background-color: #f4f4f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    text-align: left;
}

.log-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.log-container p {
    margin-bottom: 5px;
}

.log-container pre {
    background-color: #e9ecef;
    padding: 6px;
    border-radius: 5px;
    color: #343a40;
    word-wrap: break-word;
    margin-bottom: 2px;
    line-height: 12px;
}

.accordion__header .btn-header-link {
    border: none;
    width: 100%;
    padding: 10px 20px;
    background-color: #f2f2f2;
    text-align: left;
}

.accordion__header .btn-header-link:after {
    font-family: "Line Awesome Free";
    font-weight: 900;
    float: right;
    content: "\f107";
}

.accordion__header .btn-header-link.collapsed:after {
    content: "\f106";
}

.accordion__wrp .card-body {
    /*background-color: #f5f5f5;*/
}


