/*------------------------------*\
 * Project Name: Momra
 * Date of Dev: 12/12/2021
 * File Name: main.css
 * Dev Name: Mohamed ELShabrawy
\*------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@700&family=Cairo:wght@300;400&display=swap');

body{
    font-family: 'Cairo', sans-serif;
    background-color: #F2F2F2;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Almarai', sans-serif;
}
.clr{clear: both;}
header{
    background: #F2F2F2 url("/images/header_bg.png") no-repeat left top;
    background-size: 100% 100%;
}

/* Navbar */
nav{
    box-shadow: 0 3px 10px #333;
    height: 70px;
    z-index: 999;
}
.navbar-brand{
    width: 200px;
}
.navbar-brand img{
    width: 100%;
    height: 100%;
}
.login_btn{
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    border-radius: 6px;
    padding: 6px 15px !important;
    color: #111111 !important;
    font-weight: bold;
}
.login_btn:hover{
    font-weight: normal;
    color: #F2F2F2 !important;
    transition: all 0.5s ease-in-out;
}

/* User Inf*/
.user_inf{ padding: 10px 0; display: flex;}
.user_inf > div,.user_inf > h4 {display: inline-block;}
.user_inf .avatar{
    background-color: #F2F2F2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
}
.user_inf .avatar img{
    width: 100%;
    height: 100%;
}
.user_inf .name{
    font-size: 18px;
    padding: 10px 5px;
}

.user_inf .setting{position: relative;}
.user_inf .setting .dropdown-menu{
    border-color: #FFF;
    min-width: 8rem;
}
.user_inf .setting .dropdown-menu li:hover a{
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    color: #FFF;
}
.user_inf .setting .dropdown-menu[data-bs-popper]{
    right: -300%;
}
.user_inf .dropdown-toggle::after{display: none;}

/* Header Content */
.header_content{
    padding: 50px 0;
    overflow: hidden;
}
.header_content .item_right{
    background: url("/images/circle_img.png") no-repeat;
    background-position: 70% bottom;
    background-size: 80% 73%;
    padding-top: 30px;
}
.header_content .item_right img.circle{
    margin-top: 18%;
    width: 90%;
    height: 90%;
    animation: 6s spinnow infinite linear;
    opacity: 0.5;
}
@-webkit-keyframes spinnow {
    from {-webkit-transform: rotate(0deg)}
    to {-webkit-transform: rotate(360deg)}
}
.header_content .item_left{
    background: url("/images/left_bg.png") no-repeat;
    background-position: center 10%;
    background-size: 90% 100%;
    padding-top: 30px;
}
.header_content h1{font-size: 30px;}
.header_content h1 span{
    color: #FFF;
    display: block;
    margin-bottom: 20px;
}
.header_content p{
    width: 80%;
    color: #0d0d0d;
    font-size: 16px;
}
.header_content .item_left img{
    width: 100%;
}
.btns a{
    display: inline-block;
    color: #111111;
    margin: 12px auto 0;
    transition: all 0.5s ease-in-out;
}
.btns a.dashboard{
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    border-radius: 6px;
    padding: 7px 15px !important;
    min-width: 180px;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FFF;
}
.btns a.dashboard:hover{
    font-weight: normal;
    color: #F2F2F2 !important;
    border: 2px solid #111;
}
.btns a.go_indications{
    font-size: 26px;
    padding: 5px 20px;
    animation: 1s goo infinite linear;
}
@-webkit-keyframes goo{
    0%{-webkit-transform: translatey(0px);}
    100%{-webkit-transform: translatey(20px);}
}

/* Indications */
.indications{
    padding: 60px 0;
}
.indications h2{
    color: #11998e;
    margin-bottom: 40px;
    padding: 10px 0;
    position: relative;
}
.indications h2::after{
    content: "";
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 12%;
    height: 3px;
    border-radius: 5px;
}
.indications .item *{
    position: inherit;
    z-index: 2;
}
.indications .item{
    box-shadow: 0 3px 10px rgb(33 37 41 / 48%);
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    background: #FFF;
    margin: 10px auto;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.indications .item::after{
    content: "";
    background: linear-gradient(to left bottom, #11998e, #38ef7d);
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    position: absolute;
    opacity: 0;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.indications .item:hover::after{
    transition: all 0.7s ease-in-out;
    opacity: 1;
}
.indications .item .top .icon{
    background-color: #ebe8e8;
    vertical-align: bottom;
    border-radius: 50%;
    text-align: center;
    padding-top: 5px;
    color: #11998e;
    margin-left: 5px;
    font-size: 25px;
    float: right;
    height: 50px;
    width: 50px;
}
.indications .item .top .icon:hover{
    animation: 0.7s spinnow linear;
}
.indications .item .top h4{
    padding-top: 10px;
    float: right;
}
.indications .item p{
    padding: 10px;
    margin: 5px;
    font-size: 14px;
    color: #515151;
    border-bottom: 1px solid #00000025;
}
.indications .item .btn_group a{
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: #11998e;
    display: block;
    padding: 5px 0;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}
.indications .item .btn_group a:hover{
    color: #000000;
}
.indications .item .btn_group a:last-of-type{
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    border-radius: 6px;
    color: #111111 ;
    position: relative;
}
.indications .item .btn_group a:last-of-type::after{
    content: "";
    background-color: #FFF;
    position: absolute;
    border-radius: 6px;
    opacity: 0;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}
.indications .item:hover .btn_group a:last-of-type::after{
    transition: all 0.5s ease-in-out;
    opacity: 1;
    background: #FFF;
}
.indications .none_indications{
    background-image: linear-gradient(to left bottom, #11998e, #38ef7d);
    padding: 20px;
    font-size: 20px;
    color: #111111;
    border-radius: 5px;
    text-align: center;
}
