@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {

    font-family: 'Poppins', sans-serif;
}

.top-nav {
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 11;
    border-bottom: 1px solid #747C91;
}

.top-nav-left {
    padding-right: 35px;
}

.top-nav-left img {
    height: 50px;
}

.top-nav-right {
    display: flex;
    align-items: center;
}

.lang {
    margin-left: 15px;
    align-self: flex-start;
    padding-top: 10px;
	font-family: "DIN-Next-LT-Arabic-Regular";
	
}

.lang a{
    text-decoration: none;
    color:#00B09B;
    font-size: 15px;
    font-weight: bold;
}

.report-link h1{
    color: #747C91;
    font-size: small;
    text-align: right;
    font-size: 15px;
    font-weight: normal;
    margin: 0;
    line-height: 20px;
}

.report-link span{
    font-size: 20px;
}

.search-box input {
    outline: none;
    border: none;
    width: 100%;
}
.search-box {
    border: 1px solid gray;
    border-radius: 10px;
    height: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-style: normal;
}

@media only screen and (max-width: 480px){
    .top-nav-left{
        width: 40%;
        padding-left: 15px;
    }
	
	.search-box {
    width: 120px;
    height: 35px;
}

    .top-nav-left img {
        width: 100%;
        height: 100%;
    }

    .top-nav-right h1 {
        font-size: 13px;
    }

    .top-nav-right span {
        font-size: 18px;
    }

    .lang {
        margin-right: 5px;
    }
}

/* hamburger styles*/
.hamburger {
    width:30px;
	height:25px;
	position:relative;
    cursor: pointer;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wrapper {
    min-width: 100px;
    min-height: 70px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #747C91;
}

@media only screen and (max-width: 450px){
    #wrapper {
        min-width: 70px;
    }
}

.line {
	position: absolute;
	height: 4px;
	width:100%;
	background:#00B09B;
	transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.35s;
}
.top {
	top:20%;
}
.middle {
	top:48%;
}
.bottom {
    align-self: flex-start;
    width: 65%;
	top:76%;
}

.hamburger:hover .bottom {
    width: 100%;
}

.icon.close .top {
	transform:rotate(45deg);
	top:48%;
}

.icon.close .middle, .icon.close .bottom {
    width: 100%;
	transform:rotate(-45deg);
	top:48%;
}

.close {
    opacity: 1 !important;
}
/* End hamburger styles*/

.mega-menu {
    display: none;
    background-color: #00B09B;
    position: fixed;
    top: 70px;
    bottom: 0;
    width: 100%;
    min-height: calc(100vh - 70px);
    z-index: 10;
    overflow: auto;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mega-menu::-webkit-scrollbar { 
    display: none;
}

.slider-active {
    animation: slideInDown;
    animation-duration: 0.5s;
}

.slider-inactive {
    animation: slideOutUp;
    animation-duration: 0.5s;
}

.links {
    min-height: calc(100vh - 70px);
    padding: 100px 0;
	font-family: "DIN-Next-LT-Arabic-Light", 'Effra-Light', Arial, sans-serif;
}

.links li{
    display: none;
    list-style: none;
    padding: 10px 0;
    border-top: dashed 1px white;
    margin-right:40px;
    margin-left: 40px;
    animation: fadeInUp ease;
    animation-duration: 1.5s;
	text-align: right;
}

.links a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: 0.2s;
}

@media only screen and (max-width: 992px){
    .links li {
        margin: 0;
    }

}

@media only screen and (max-width: 600px){
    .mega-menu{
        padding: 20px 10px 50px 10px;
    }

    .links {
        min-height: auto;
        padding: 0;
    }
}

@media only screen and (max-width: 450px){

    .links li{
        margin: 0;
        animation: fadeInDown ease;
        animation-duration: 1.5s;
    }

    .links a {
        font-size: 16px;
    }

    .first-set .last-link{
        border-bottom: none;
    }
}

@media only screen and (max-width: 350px){

    #wrapper {
        min-width: 55px;
    }

    .report-link h1{
        font-size: 12px;
        line-height:15px ;
    }

    .report-link span{
        font-size: 12px;
    }

    .links a {
        font-size: 14px;
    }

    .sub-menu-content a {
        font-size: 12px !important;
    }

    .lang {
        margin-right: 5px;
        padding-top: 10px;
    }

    .lang a{
        font-size: 12px;
    }
}

.sub-menu-title span{
    padding-right: 10px;
    transition: 0.2s;
}

.links a:hover{
    opacity: 0.5;
}

.sub-menu-title:hover{
    opacity: 1 !important;
}

.sub-menu-title span:hover{
    opacity: 0.5 !important;
}

.last-link{
    border-bottom:dashed 1px white;
}

.sub-menu-content {
    display: none;
    list-style-type: none;
    padding: 0;
}

.sub-menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-menu-title .active {
    opacity: 0.5;
}

.fa-arrow-circle-down, .fa-chevron-down {
    transition: 0.3s ease;
}

.fa-arrow-circle-down.angle-up, .fa-chevron-down.angle-up {
    transform: rotate(180deg);
}

.sub-menu-content li{
    margin: 0;
    border: none;
    padding: 5px 0;
    animation: none;
}

.sub-menu-content a{
    font-size: 14px;
    font-weight: normal;
}

.art-top {
    position: absolute;
    top: 0;
    left: 0;
}

.art-bottom {
    position: fixed;
    bottom: 0;
    right: 0;
}
.art-bottom img, .art-top img {
    width: 200px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

@media only screen and (max-width: 900px){
    .art-top, .art-bottom {
        display: none;
    }
}

/* Top Toolbox */
.buttons-set{
    position: relative;
    top: 70px;
    width: 100%;
    height: 70px;
	padding: 10px 25px 0px 35px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    border-color: red;
}

.buttons-set img {
    height: 34px;
}

.right-icons {
    display: flex;
}

.share-icons {
    padding-right: 10px;
    display: flex;
}

.my-report-icons{
    display: flex;
}

/* Tooltips */
.tool-tip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 55px;
    background-color: #00B09B;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    color: white;
    transition: 0.3s;
    white-space: nowrap;
    cursor: pointer;
    z-index: 2;
}

.tool-tip::before {
    content: " ";
    position: absolute;
    top: -10px; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #00B09B transparent;
  }

.tooltip-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 15px;
}

.tooltip-icon input {
    outline: none;
    border-radius: 0;
    border: none;
    padding: 2px 5px;
}

.tooltip-icon:hover .tool-tip {
    visibility: visible;
    opacity: 1;
}

.tooltip-icon input:focus-within .tool-tip {
    visibility: visible;
    opacity: 1;
}

.share.tool-tip a{
    font-size: 15px;
    text-decoration: none;
    color: white;
    padding-left: 5px;
}

.next-btn, .prev-btn {
    height: 50px;
    width: 50px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: #747C91;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.next-prev a{
    font-size: 20px;
    text-decoration: none;
    color: white;
}

.next-btn {
    right: 0;
}

.prev-btn {
    left: 0;
}

.next-btn .next-prev-page {
    right: 50px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
    align-items: flex-end;
}

.prev-btn .next-prev-page {
    left: 50px;
    font-size: 12px;
    opacity: 0;
    transition: 0.3s;
    align-items: flex-start;
}

.next-prev-page {
    visibility: hidden;
    position: absolute;
    height: 50px;
    width: auto;
    background-color:white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
    padding: 0 15px;
    border: 1px solid #00B09B;
    box-shadow: -2px 2px 19px -4px rgba(165,165,165,0.6);
}

.next-prev-page p{
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    color: #00B09B;
    list-style: inherit;
}

.next-page-link, .prev-page-link{
    color: #240772 !important;
    font-size: 15px;
}

.next-btn:hover .next-prev-page{
    visibility: visible;
    opacity: 1;
}

.next-btn:hover {
    background-color: #00B09B;
}

.prev-btn:hover .next-prev-page{
    visibility: visible;
    opacity: 1;
}

.prev-btn:hover {
    background-color: #00B09B;
}



main {
    padding-top: 10px;
    position: relative;
    top: 70px;
	text-align: right;
}
/*
main h1 {
    text-transform: uppercase;
    color: #240772;
    font-weight: bold;
}

main h2 {
    color: #00B09B;
    font-weight: bold;
    margin-top: 30px;
}

main h4 {
    color: #240772;
    font-weight: lighter;
    font-size: 30;
    line-height: 35px;
}

main h5 {
    line-height: 28px;
    font-weight: bold;
}

main section .bg-purple {
    background-color: #2A256D !important;
    padding: 20px;
}

main section img {
    width: 100%;
    height: auto;
}

main section p {
    font-size: 15px;
    color: #747C91;
}*/

footer {
    background-color: #CFCDDF;
    color: #FFFFFF;
   /* height: 80px;*/
    margin-top: 30px;
}

footer p {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 750px){

    .tool-tip {
        display: none;
    }
    
    .buttons-set {
        justify-content: space-around;
    }

    .share-icons {
        padding-right: 0px;
    }

    .tooltip-icon {
        margin-right: 10px;
    }

/*    main {
        padding-top: 0px;
    }
*/
    footer {
        margin-top: 0;
    }

    .next-btn, .prev-btn {
        height: 50px;
        width: 50px;
        position: relative;
        transform: none;
    }

    .next-prev {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0;
    }

    .next-prev-page {
        visibility: visible;
        box-shadow: none;
        border-color: #747C91;
    }
    .next-prev-page p{
        color: #747C91;
    }

    .prev-btn .next-prev-page, .next-btn .next-prev-page  {
        opacity: 1;
    }

    .next-page-link, .prev-page-link {
        display: none;
    }

}



@media only screen and (max-width: 650px){
	
	
	
main {
    padding-top: 10px;
    position: relative;
    top: 70px;
	text-align: right;
	padding-bottom: 50px;
}	
	
	
	
	
	    .next-prev {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0;
			position: relative;
			bottom: -100px;
z-index: 10;
    }
	
}





@media only screen and (max-width: 450px) {
    main section .container{
        padding: 0 30px;
    }

    main section .container-fluid .container {
        padding: 10px;
    }
	
	.buttons-set img {
    height: 26px;
}

}

