@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

@media(min-width:1150px) {
    .curl {
        position: absolute;
        top: 0;
        right: -300px;
        height: 100%;
        width: 100%;
        z-index: -1;
        text-align: end;
    }

    .curl svg {
        width: 1329px;
        height: 904px;
    }
}

@media(min-width:1400px) {
    .curl {
        right: -300px;
    }
}

@media(min-width:1600px) {
    .curl {
        right: -50px;
    }
}

@media(min-width:320px) {
    .side-nav {
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        max-width: 90px;
        padding: 10px;
        background-color: #064986;
        z-index: 100;
    }

    .side-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .side-nav ul {
        padding-top: 35px;
    }

    .side-nav ul li a {
        display: block;
        padding: 10px;
        width: 3.5rem;
        height: 3.5rem;
        text-align: center;
        margin-bottom: 25px;
        border-radius: 5rem;
    }

    .side-nav ul li a:hover {
        background: rgba(255, 255, 255, 0.13);
    }

    .nav-brand-logo {
        display: block;
        padding-bottom: 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .page-wrapper {
        width: calc(100vw - 110px);
        margin-left: 90px;
    }
}

.tab-nav {
    border-bottom: 1px solid #ced4da;
}

.tab-nav button {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #ced4da;
    padding: 10px 15px;
    transform: translate(0, 1px);
    color: #ccc;
}

.tab-nav button:hover {
    border-color: #418ED3;
}

.tab-nav button.active {
    border-color: #418ED3;
    color: #333;
}

.floating-action-btn {
    display: block;
    text-align: center;
    line-height: 56px;
    border: 0;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background: #418ED3;
    position: fixed;
    right: 15vw;
    bottom: 25vh;
}

.floating-action-btn:hover {
    background: #064986;
}

.card .indicator {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.card .indicator .circle {
    width: 15px;
    height: 15px;
    background: #fff;
    margin-left: 5px;
    border-radius: 100%;
}

.card .indicator .circle.active {
    background: #FFEC00;
}


.img-upload input {
    display: none;
}

.img-upload {
    position: relative;
    display: flex;
    width: 430px;
    height: 250px;
    /*border-radius: 100%;*/
    overflow: hidden;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

.img-upload .icon {
    width: 60px;
    height: 60px;
    position: absolute;
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    background: #fff;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: .5;
}

.img-upload:hover .icon {
    opacity: 1;
}

.img-upload img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo {
    overflow: hidden;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    margin: auto;
}

.photo img {
    object-fit: cover;
    height: 100%;
    width: 100%
}

element.style {
    display: inline-block;
}

.swal2-styled .swal2-confirm {
    background-color: red;
}

.accordion-button {
    background: #F5F5F5;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background: #EEEEEE;
}

.single-file .file {
    position: relative;
}

.single-file button {
    position: absolute;
    top: 25px;
    opacity: 1;
}

.img-zoom-container {
    position: relative;
}

.img-zoom-lens {
    position: absolute;
    border: 1px solid red;
    /*set the size of the lens:*/
    width: 100px;
    height: 90px;
}

.img-zoom-result {
    position: absolute;
    visibility: hidden;
    border: 1px solid #333;
    /*set the size of the result div:*/
    width: 512px;
    height: 512px;
    left: 105%;
    top: 0;
    z-index: 1000;
}

.img-zoom-container:hover .img-zoom-result {
    visibility: visible;
}