@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'Gobold High';
    src: url('../fonts/GoboldHigh.otf');   
}

/* Remove default padding */
ul[class],
ol[class] {
	padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

html {
	overflow-x: hidden;
}

/* Set core body defaults */
body {
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	overflow-x: hidden;
	/*overflow-y: hidden;*/
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
	list-style: none;
	padding-left: 0;
}
ul{
	padding-left: 0;
}
li{
	list-style-type: none;
}
/* Box sizing rules */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*------- Theme CSS ----------*/

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 25px;
	color: #000;
	font-weight: 400;
	overflow: hidden;
}

a {
	color: #373737;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

a:hover {
	text-decoration: none;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	color: #373737;
}

img {
	height: auto;
	max-width: 100%;
	border-radius: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	line-height: 1.2;
}

h1 {
	font-size: 122px;
	line-height: 122px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 18px;
	line-height: 23px;
}

p {
	margin: 0 0 20px;
}

.btn {
	color: #000;
	padding: 9px 11px;
	line-height: 12px;
	border: 1px solid #E8EAEA;
	position: relative;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 600;
	background-color: #E8EAEA;
}

.btn:hover {
	background: #E8EAEA;
	border: 1px solid #E8EAEA;
	color: #000;
}

.btn:focus,
input:focus,
.form-control:focus,
button:focus {
	outline: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-box-shadow: none;
}
/* .form-group{
	margin-bottom: 0;
} */

/* ------- Sidebar --------- */
.full_logo{
	max-width: 180px;
}
.sidebar{
	width: 80px;
	position: fixed;
	left: 0;
	top:68px;
	height: calc(100vh - 68px);
	background-color: #EC5569;
	transition: 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.sidebar ul{
	padding-top: 35px;
}
.sidebar li{
	width:100%;
	margin-bottom: 20px;
	padding-left:20px;
	position: relative;
}
.sidebar li a{
	display: flex;
	padding: 5px 0 5px 15px;
	color:#fff;
}
/* .sidebar li a svg path{
	fill:#fff 
} */
.sidebar li.active a svg path{
	stroke: rgb(234, 84, 107);
}

.sidebar li.active a{
	background-color: #F4F7F9;
	border-radius: 8px 0 0 8px;
	color:#EC5569 ;
	position: relative;
}

.sidebar li.active p:nth-child(1){
	position: absolute;
	width: 100%;
	height: 20px;
	background: #F4F7F9;
	top:-20px;
	left: 0
}
.sidebar li.active p:nth-child(1)::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 20px;
	background: #EC5569;
	border-bottom-right-radius: 8px;
	top:0px;
	left: 0
}

.sidebar li.active p:nth-child(2){
	position: absolute;
	width: 100%;
	height: 20px;
	background: #F4F7F9;
	bottom:-40px;
	left: 0
}
.sidebar li.active p:nth-child(2)::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 20px;
	background: #EC5569;
	border-top-right-radius: 8px;
	bottom:0px;
	left: 0
}
#nav-toggle{
	display: none;
}
#nav-toggle:checked + .sidebar{
	width: 200px;
	transition: 0.5s;
}
#nav-toggle:checked + .sidebar li span:last-child{
	display: block;
	padding-left: 10px;
}
#nav-toggle + .sidebar li span:last-child{
	display: none;
}
.navigation-button {
    position: relative;
    width: 22px;
    height: 14px;
    z-index: 9;
    display: inline-block;
    cursor: pointer;
	margin-bottom: 0;
}
.navigation-button .navbar-line {
    background-color: #C4C4C4;
    height: 2px;
    width: 20px;
    transform: rotate(0);
    left: 0;
    right: 0;
    transition: 0.2s;
    display: block;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}
.navigation-button .navbar-line:nth-child(1) {
    top: 0;
}
.navigation-button .navbar-line:nth-child(2), .navigation-button .navbar-line:nth-child(3) {
    top: 6px;
}
.navigation-button .navbar-line:nth-child(4) {
    top: 12px;
}

.menu-open .navigation-button .navbar-line:nth-child(1), .menu-open .navigation-button .navbar-line:nth-child(4) {
    width: 0;
}
body.menu-open .navigation-button span.navbar-line {
    background-color: #C4C4C4;
}
.menu-open .navigation-button .navbar-line:nth-child(2) {
    transform: rotate(-45deg);
}
.menu-open .navigation-button .navbar-line:nth-child(3) {
    transform: rotate(45deg);
}
.sidebar_bottom{
	margin-bottom: 30px;
}
/* ------- Topbar ---- */
.site-header{
    z-index: 99;
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
}
.topbar{
	display: flex;
	justify-content: space-between;
	padding: 12px 40px;
	align-items: center;
}
.brand{
	display: flex;
	align-items: center;
}
.topbar_right{
	display: flex;
	align-items: center;
}
.humburger{
	margin:0 30px
}
.brand_name h4{
	margin-bottom: 0;
}
.search_wrapper{
    background-color: #F4F7F9;
    position: relative;
    border-radius: 8px;
    min-width: 260px;
    padding: 5px 30px;
    margin-right: 50px;
}
.search_wrapper .search_icon{
    position: absolute;
    right: 30px;
    top:50%;
    transform: translateY(-50%);
}
.search_wrapper input{
    border:0;
    background: transparent;
    padding: 0;
    color:#C5CEE0;
}
.notification{
    position: relative;
}
.notification:after{
    position: absolute;
    content: '';
    top:10px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #0095FF;

}
.profile{
    margin-left: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.sidebar {
    width: 200px !important;
    transition: 0.5s !important;
}
.site-wrapper{
	background-color: #F4F7F9;
	margin-top: 68px;
    /* overflow: auto; */
/*    height: 100vh;*/
}
.main-content{
	transition: 0.5s ease;
	padding-left: 80px;
	padding-bottom: 68px;
 }
 .main-content{
	 /* transform: translateX(200px); */
	 margin-left: 0;
	 padding-left: 0;
 }
 .display_flex{
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
 }
 /* .design_table table td{
	 white-space: nowrap;
 } */
 .design_table table td.start-design a{
	width: 150px;

 }
 .site-wrapper {
    padding: 43px 45px 0 250px !important;
}
.sidebar li span:last-child{
	display: block !important;
	padding-left: 10px;

}
.topbar .humburger{
	display: none;
}