/* Custom CSS Settings
-------------------------*/
[[setting:customcss]]

/* Start - Course Categories */
.course-card-view {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding-bottom: 2rem;
    max-width: 16rem;
    min-width: 12rem;
    overflow: hidden;
    transition: all .3s ease-in-out;

    &:hover {
      box-shadow: rgba(255, 0, 38, .4) 5px 5px, rgba(255, 0, 38, .3) 10px 10px, rgba(255, 0, 38, .2) 15px 15px, rgba(255, 0, 38, .1) 20px 20px, rgba(255, 0, 38, .05) 25px 25px!important;
      transform: translate3d(-5px, -5px, 5px);

        .course-card-img div {
            transform: scale(1.05, 1.05);
        }
    }

    .course-card-img div {
        height: 7rem;
        background-position: top right;
        background-size: cover;
        transition: all .3s ease-in-out;
    }

    .teachers {
        font-size: .9rem;
    }

    .card-see-more {
        position: absolute;
        bottom: 0;
        width: 100%;

        .btn {
            width: 90%;
        }
    }
}
/* End - Course Categories */

.drawer-toggles .drawer-toggler {
    top: calc(150px + 0.7rem) !important;
}

.drawer .drawerheader .drawertoggle {
    padding: 5px 10px;
    border-radius: 10px;
}

  .moremenu {
    /* opacity: 1 !important; */
    height: 60px;
}


@media (min-width: 768px) {
    .login-container {
        max-width: 450px !important;
    }
}



.testimonials .testimonial-item .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .testimonials .testimonial-item .testimonial-footer .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  }
  
  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
  }
  
  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }
  
  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 36px;
    color: color-mix(in srgb, var(--accent-color), transparent 70%);
    line-height: 1;
  }
  
  .testimonials .testimonial-item .testimonial-footer .quote-icon i {
    transform: scaleX(-1);
  }


  /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-about .logo span {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--accent-color);
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
  }
  
  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .footer .credits {
    margin-top: 8px;
    font-size: 13px;
  }

.loginform .login-signup+.login-divider, .loginform .login-signup+.login-divider+.d-flex {
    display: none !important;
}

.login-identityprovider-btn {
    color: red;
    border-color: red !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    img {
        filter: brightness(0) saturate(100%) invert(11%) sepia(98%) saturate(7480%) hue-rotate(0deg) brightness(94%) contrast(119%);
    }

    &:hover {
        background-color: red;
        color: white !important;

        img {
            filter: brightness(0) invert(1) !important;
        }
    }
}

.loginform {
    #loginlogo #logoimage {
        max-width: 250px;
        margin-bottom: 20px;
    }
    .login-form { 
        
        .login-form-submit .btn {
            width: -webkit-fill-available;
            padding: 3px;  
            font-size: 16px; 
        }

        .form-group input {
            font-size: medium;
            box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
            border-color: rgba(213, 213, 213, 0.3);
        }

    }

    .login-signup .btn {
        width: -webkit-fill-available;
    }
}

.signupform {
    .form-group {
        input {
            font-size: medium;
            box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
            border-color: rgba(213, 213, 213, 0.3);
        }
        .col-form-label {
            justify-content: space-between;
        }
    }

    .form-group#fgroup_id_buttonar {
        input {
            font-size: medium;
            box-shadow: none !important;
            border-color: rgba(213, 213, 213, 0.3);
        }
    }
}

#page-login-forgot_password .mform {
    #id_searchbyusernamecontainer, #id_searchbyemailcontainer {
        #fitem_id_username, #fitem_id_email {
            flex-direction: column;

            .col-form-label {
                min-width: -webkit-fill-available;
            }

            .felement {
                min-width: -webkit-fill-available;

                input {
                    min-width: -webkit-fill-available;
                    box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
                }
            }
        }

        #fitem_id_submitbuttonusername, #fitem_id_submitbuttonemail {
            .col-form-label {
                display: none !important;
            }

            .felement {
                min-width: -webkit-fill-available;

                input {
                    min-width: -webkit-fill-available;
                }
            }
        }
    }

    #id_searchbyemail {
        border-bottom: 0 !important;
    }
}

.courses .course-card-view {
    padding: 10px;

    &:hover {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
}

#footer {
    background-color: #f8f5f4;
    color: #52413a;

    .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px;

        img {
            max-height: 40px;
            margin-right: 6px;
        }
    }

    h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
        text-align: center;
        color: black;
    }

    .footer-about p {
        font-size: 14px;
        font-family: "Raleway",  sans-serif;
        color: #52413a;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb, #52413a, transparent 50%);
        font-size: 16px;
        color: color-mix(in srgb, #52413a, transparent 20%);
        margin-right: 10px;
        transition: 0.3s;

        &:hover {
            color: #c00;
            border-color: #c00;
        }
    }

    .copyright {
        padding: 25px 0;
        border-top: 1px solid color-mix(in srgb, #52413a, transparent 90%);
    }
}

.hero .hero-image-wrapper .hero-image {
    min-height: 400px !important;
    object-fit: cover !important;
}

.login-button {
  display: none !important;
}

.dashboard-button {
  display: flex !important;
}

.notloggedin {

  .login-button {
      display: flex !important;
  }
  .dashboard-button {
      display: none !important;
  }
}

.login-button:focus {
  padding: 8px 25px !important;
  color: white !important;
}

.small-first-navbar {
  gap: 15px;

  .phone-number, .email-address {
    color: white;
    padding: 10px;
  }
}


.login-wrapper .login-container {
  --g: 4px;       /* the gap            */
  --b: 12px;      /* border thickness   */
  --c: red;     /* the color          */
  
  --_c: #0000 0 25%, var(--c) 0 50%;
  --_g1: repeating-linear-gradient(90deg ,var(--_c)) repeat-x;
  --_g2: repeating-linear-gradient(180deg,var(--_c)) repeat-y;
  background:
    var(--_g1) var(--_p, 25%) 0   ,var(--_g2) 0    var(--_p,125%),
    var(--_g1) var(--_p,125%) 100%,var(--_g2) 100% var(--_p, 25%);
  background-size: 200% var(--b),var(--b) 200%;
  cursor: pointer;
  filter: grayscale(25%);
  transition: .5s;
}

.login-wrapper .login-container:hover {
  --_p: 75%;
  filter: grayscale(0%);
}

.login-container {
  padding: 0;
  box-shadow: none;

  [role="main"] {
    padding: 3rem;
    margin: 10px;
    background-color: white;
    border-radius: 10px;
  }
}

.path-login .login-page-home-btn {
  display: flex !important;
  color: white;
  align-items: center;
  justify-content: center;

  &:hover {
    color: white;
  }
}

.login-page-home-btn {
  display: none !important;
}

.path-login .usermenu-container {
  display: none !important;
}

#block-region-content .block_myoverviewz.block.card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  [data-region="paged-content-page"] .card-deck.dashboard-card-deck .card {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    transition: all ease 0.3s;

      &:hover {
        box-shadow: rgba(255, 0, 38, .4) 5px 5px, rgba(255, 0, 38, .3) 10px 10px, rgba(255, 0, 38, .2) 15px 15px, rgba(255, 0, 38, .1) 20px 20px, rgba(255, 0, 38, .05) 25px 25px;
        transform: translate3d(-5px, -5px, 5px);

        > a .card-img {
          transform: scale(1.02);
        }
      }
  }
}

