@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Indie+Flower&family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: rgba(151, 151, 151, 0.03);
}
section {
	width: 100%;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
}
.hidden {
    display: none;
}
.container {
    max-width: 1350px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 10px;
}
.uppercase-text {
	text-transform: uppercase;
}
.uppercase-text2 {
	text-transform: uppercase;
	font-size: .95rem;
}
.cat-error-text {
    text-transform: uppercase;
    color: #FF0004;
    font-weight: 600;
    text-align: center;
}
.search {
	width: 100%;
	max-width: 800px;
	display: flex;
	align-items: center;
	border-radius: 3px;
	padding: 8px;
	border: 1px solid #A0A0A0;
	background-color: rgba(255,255,255,0.9);
	margin-left: 8px;
}
.search input {
	background: transparent;
	flex: 1;
	border: 0;
	outline: none;
	padding: 4px;
	font-size: 1rem;
	color: #282828;
}
::placeholder {
	color: #282828;
}nav {
	position: fixed;
	left: 0;
	width: 200px;
    height: 100%;
    background-color: #B5B5B5;
    font-family: 'Oswald', sans-serif;
    flex-wrap: wrap;
	transition: all 480ms ease-in-out; 
}
nav.move {
	width: 60px;
}
.nav-bar {
    display: flex;
	flex-direction: column;
    align-items: center;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 6px 4px;
}
.nav-brand {
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-brand-logo {
	display: inline-block;
	width: 100%;
	max-width: 180px;
	transition: all 1 ease-in-out;
}
.nav-brand-logo.active {
	display: none;
}
.nav-brand-logo2 {
	display: none;
	width: 100%;
	max-width: 60px;
	transition: all 1 ease-in-out;
}
.nav-brand-logo2.active {
	display: inline-block;
}
.nav-menu-links {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.nav-menu-links li {
	width: 100%;
}
.dash-icon {
	width: 25px;
	display: block;
	margin-right: 6px;
}
.nav-menu-links li a {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #282828;
	text-transform: uppercase;
}
.collapse {
	padding: 6px 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.collapse-btn {
	
	transform: rotate(0);
	transition: all .2s ease;
	
}

.collapse-btn.clicked {
	transform: rotate(180deg)
}

.warning-text-area {
    width: 100%;
    font-size: 1.15rem;
    padding: 10px 0 20px;
}
.date-of-birth-h2 {
    width: 100%;
    text-align: center;
}

.the-login-area {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background-image: -webkit-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: -moz-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: -o-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: linear-gradient(0deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.issue-left {
    font-size: .75rem;
}

/*Ad Edit Area in Admin Portal*/
.edit-ad-section {
    width: 100%;
    min-height: 100vh;
    padding: 60px 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.35);
}


#login-form {
	width: 100%;
	max-width: 380px;
	padding: 15px 10px;
	/*background-image: linear-gradient(to top, #5E7564, #757575, #5E7564);*/
	background-color: #FFFFFF;
	border-radius: 5px;
	box-shadow: 5px 6px 8px rgba(0,0,0,0.25);
}
#login-form img {
	width: 100%;
	height: auto;
}
#login-form input {
	width: 100%;
	margin-bottom: 8px;
}
#login-form input[type=text], #login-form input[type=email], #login-form input[type=password] {
	padding: 5px;
	line-height: 10px;
	font-size: .95rem;
	border-radius: 5px;
	border: 1px solid #5C5553;
	outline: none;
}
#login-form input[type=date] {
	padding: 5px;
	line-height: 15px;
	font-size: .95rem;
	border-radius: 5px;
	border: 1px solid #5C5553;
	outline: none;
}

#login-form input[type=submit] {
	padding: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 5px;
	border: 2px solid #C2C2C2;
	/*background-image: linear-gradient(to bottom, #262C57, #3744A3, #262C57);*/
	background-color:  #3744A3;
	color: #FFFFFF;
	cursor: pointer;
}
.login-info-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.login-info-area a {
	font-size: .85rem;
	color: #2F2F2F;
}
.return-to-main {
	width: 100%;
	text-align: center;
}
.error-area {
	text-transform: uppercase;
	color: #FF0004;
	text-align: center;
	font-weight: 600;
}
.success-text {
	color: #07AA00;

}

/***User Stats***/
.status-icons-zone {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.status-icons {
    border-radius: 50% 50%;
    border: 2px solid #cdcdcd;
    padding: 3px;
    width: 70px;
    height: 70px;
}
.status-icons.viewed {
    border: 2px solid #FFFFFF !important;
}
.user-tab {
    width: 100%;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 5px;
    transition: all 480ms ease-in-out;
}
.member-edit-btn {
    padding: 4px;
    background-color: #D1881F;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
}

/*Admin Dashboard Page*/
/******** The Left Side ********/
.left-sidebar {
	padding: 1rem 0;
	width: 220px;
	height: 100%;
	background: #1F8AD2;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	transition: all 480ms ease-in-out;
}
.left-sidebar.slideIt {
	width: 90px;
}
.left-sidebar-brand {
	padding-left: 1.65rem;
	padding-right: 1rem;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.left-sidebar-brand img {
	width: 45px;
}
.left-sidebar-brand span {
    color: #282828;
    font-size: 35px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
}
.left-sidebar-nav {
	position: relative;
	width: 100%;
	margin-top: 60px;
	padding-left: 1.65rem;
	height: 70vh;
}
.left-sidebar-nav .links:last-child {
	position: absolute;
	bottom: 1rem;
}
.link-issue-count {
    border-radius: 50% 50%;
    width: 25px;
    height: 25px;
    background-color: #DB0700;
    color: #FFFFFF;
    font-weight: 600;
    padding: 5px;
    font-size: .75rem;
    position: absolute;
    top: -3px;
    left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.left-sidebar-nav .links {
    position: relative;
	width: 100%;
	padding: .9rem 0;
	transition: all 480ms ease-in-out;
}
.left-sidebar-nav .links.slideIt {
	overflow: hidden;
}

.left-sidebar-nav .links:hover {
	padding: .9rem .75rem;
}
.left-sidebar-nav .links.active {
	background: #FFFFFF;
	border-radius: 30px 0 0 30px;
	padding: .9rem .75rem;
}
.left-sidebar-nav .links a {
	display: flex;
	align-items: center;
	color: #282828;
	text-transform: uppercase;
	font-weight: 700;
	transition: all 480ms ease-in-out;
}
.left-sidebar-nav .links a span{ 
	display: block;
	margin-right: .95rem;
}
.side-link-text  {
	opacity: 1;
	transition: all 480ms ease-in-out;
}

.side-link-text.changeIt {
	opacity: 0;
}
.main-area-container {
	background: #EBEBEB;
	margin-left: 220px;	
	min-height: 100vh;
	transition: all 480ms ease-in-out;
}
.main-area-container.slideIt {
	margin-left: 90px;
}
.show-tab {
    display: none;
    padding: 3px 6px;
    position: fixed;
    right: -35px;
    top: 200px;
    background-color: #1F8AD2;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 1px;
    transform: rotate(90deg);
    cursor: pointer;
}
main {
	display: grid;
	grid-template-columns: auto 400px;
	gap: 1rem;
	padding: 1rem;
	position: relative;
}
.main-left2 {
    width: 100%;
}
.main-rght {
    transition: all 480ms ease-in-out;
    
}

main.second {
	display: grid;
	grid-template-columns: auto;
	gap: 1rem;
	padding: 1rem;
	position: relative;
}
header {
	position: sticky;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #FFFFFF;
	height: 60px;
	padding: 0 10px;
	z-index: 2;
	box-shadow: 2px 0 5px rgba(0,0,0,0.25);
}
header h2 {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 1.35rem
}
header h2 span {
	margin-right: 1rem;
	cursor: pointer;
}

.new-deal-btn {
	background-color: #AEC2B4;
	padding: 10px 6px;
	border: 1.25px solid #282828;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
}
.user-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.user-image {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	
}
.user-image img {
	width: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.unapproved-area-standings {
	margin-top: 1rem;
	background: #1F8AD2;
	padding: 12px;
	color: #FFFFFF;
}
.unapproved-area {
	margin-top: 1rem;
	background: #FFFFFF;
	padding: 6px;
}
.unapproved-area-header {
	font-weight: 600;
	text-transform: uppercase;
}
.unapproved-area-header.standings {
    text-align: center;
    padding-bottom: 5px;
}
	/*.unapproved-area-text {
	display: grid;
grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	justify-items: center;
}*/

.main-rght video {
    display: block;
    margin: 0 auto 15px;
}

/********The Other Stuff********/
.the-other-login-area {
    background-color: #1F8AD2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -webkit-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: -moz-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: -o-linear-gradient(90deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-image: linear-gradient(0deg,rgba(189,189,189,0.85) 0%,rgba(189,189,189,0.85) 99.48%), url(../image/BIWOS_bg2_1920.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*Admin All Page*/
.performance {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.dash-post-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	justify-items: center;
	
}
.post-cards {
	max-width: 380px;
	width: 100%;
	background-color: #FFFFFF;
	padding: 4px;
	/*aspect-ratio: 16/9;*/
}
.post-cards-image {
	position: relative;
	width: 100%;
	max-height: 180px;
	overflow: hidden;
}
.post-cards-image img {
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.post-cards-text {
    width: 100%;
	font-size: .70rem;
	display: flex;
	justify-content: space-between;
	margin-top: 4px;
}
.member-counter {
	font-size: .75rem;
}
.top-performers {
    background-color: #FFFFFF;
    padding: 3px;
    display: flex;
    flex-direction: column;
    border-radius: 3px;
	max-width: 100%;
	
}
.performance-title {
    text-transform: uppercase;
    font-weight: 700;
	width: 100%;
}
.liked-admin-span {
	display: flex;
	align-content: center;
}
.performance-wrapper span {
	color: #e12d00;
    font-size: .75rem;
    margin-left: 5px;
	display: block;
}
.performance-wrapper {
    display: flex;
    justify-content: space-between;
    font-size: .75rem;
	width: 100%;
}
.performance-text-name {
   white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;
	text-align: left;
}
.approval-card-text-left {
   /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50%;
}

/*Dahboard Area*/
.screen {
	position: fixed;
	opacity: 0;
	height: 100vh;
	background-color: rgba(0,0,0,0.25);
	z-index: 1;
	transition: opacity 480ms ease-in-out;
}
.screen.show {
	opacity: 1;
}
.form-holder {
	height: 100vh;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	opacity: 0;
	transition: opacity 480ms ease-in-out;
}
.form-holder.show {
	opacity: 1;
}
.set-yellow {
    background-color: yellow;
    padding: 8px;
}
.small-note-text {
    font-size: .85rem;
}
#add-product-form2, .user-tab2 {
	display: none;
	width: 100%;
	background-color: #FFFFFF;
	padding: 15px 10px;
	margin-top: 6px;
	transition: all 480ms ease-in-out;
}
.list-of-cats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.list-of-store-options {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
#add-product-form {
	width: 100%;
	max-width: 380px;
	background-color: #FFFFFF;
	padding: 15px 10px;
	margin: 0 auto;
	transition: all 480ms ease-in-out;
}
#add-product-form input, #add-product-form textarea, #add-product-form2 input, #add-product-form2 textarea {
    padding: 6px 4px;
    outline: none;
}
#add-product-form select, #admin-update select, #add-product-form2 select, #admin-update2 select {
    padding: 6px 4px;
    outline: none;
}
#add-product-form input[type=checkbox] {
    text-align: right;
}
.form-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.input-long {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 8px;
}
.input-long label {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.must-do { 
    font-size: .85rem;
    color: red;
    font-weight: 700;
    display: inline-block;
}
.main-dashboard-load-area {
	background-color: #ECECEC;
	margin-left: 188px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.add-new-product {
	background-color: #757575;
	width: 100%;
	text-align: center;
	padding: 6px;
}
.add-item-btn {
	background-color: #1F8AD2;
	padding: 4px 6px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	color: #FFFFFF;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}
.show-pending-product {
	flex: 1;
}
.show-posted-product {
	flex: 2;
}
.approval-card {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 8px 6px;
    background-color: #ECECEC;
}
.approval-card-image {
    aspect-ratio: 16 / 9;
    height: 180;
    width: 320;
    overflow: hidden;
}
.approval-card-image img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.approval-card-text-area {
    display: flex;
    justify-content: space-between;
    font-size: .70rem;
}
.approval-card-text-bottom {
	width: 100%;
}
.edit-btn {
	background-color: #48AA6E;
	font-weight: 600;
	padding: 6px;
	border: 1px solid #48AA6E;
	cursor: pointer;
}
.delete-btn {
	background-color: #FF482C;
	font-weight: 600;
	padding: 6px;
	border: 1px solid #FF482C;
	cursor: pointer;
}
.issue-btn {
	background-color: #171E57;
	color: #FFFFFF;
	font-weight: 600;
	padding: 6px;
	border: 1px solid #171E57;
	cursor: pointer;
}
.activate-btn {
	background-color: #171E57;
	color: #FFFFFF;
	font-weight: 600;
	padding: 6px;
	border: 1px solid #171E57;
	cursor: pointer;
}
.deactivate-btn {
	background-color: #F0507F;
	color: #000000;
	font-weight: 600;
	padding: 6px;
	border: 1px solid #F0507F;
	cursor: pointer;
}
.unapproved-area-text {
    padding: 8px 6px; 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
#admin-update {
    display: flex;
    flex-direction: column;
    font-size: .70rem;
    column-gap: 1rem;
    width: 100%;
}
#admin-update select {
    font-size: .7rem;
}
#admin-update input, #admin-update textarea, #admin-update select {
    padding: 6px 4px;
    outline: none;
}
.approval-card-text-right {
    text-align: right;
}
.btn-cluster {
    display: flex;
    justify-content: space-around;
}
.user-card {
	width: 100%;
	max-width: 500px;
	display: flex;
	justify-content: space-between;
	font-size: .7rem;
	background-color: #EDEDED;
	padding: 6px;
	flex-wrap: wrap;
}
.user-card-left-text {
   	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 68%;
}
.user-card-right-text {
	text-align: right;
}
.user-card-bottom-area {
	margin-top: 5px;
	display: flex;
	gap: 10px;
	width: 100%;
}
.yourImageHolder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.yourImageHolder img {
    object-fit: cover;
    width: 100%;
}
.shown-issue-card {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/*Admin Dashboard Page*/
.admin-dashboard {
    min-height: 100vh;
    background-color: #EBEBEB;
    display: grid;
    gap: 1.8rem;
	grid-template-columns: 280px auto 320px;
	position: relative;
	
}
.link-area {
    position: sticky;
	background-color: #FFFFFF;
	transition: background-color .3s ease;
	height: 100vh;
	top: 0;
}
.link-area.active {
	background-color: #282828;
}
.link-area .top {
	padding: 6px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.link-area .top img {
	max-width: 140px;
}
.top-logo-1 {
	display: block;
	transition: display .3s ease;
}
.top-logo-1.active {
	display: none;
}
.top-logo-2 {
	display: none;
	transition: display .3s ease;
}
.top-logo-2.active {
	display: inherit;
}
.link-area .top .close-nav {
	display: none;
	width: 16;
	height: 16;
}
.sidebar {
	margin-top: 62px;
	height: 86vh;
	display: flex;
	flex-direction: column;
	position: relative;
}
.sidebar a {
	height: 3rem;
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-left: 1rem;
	color: #282828;
	font-weight: 700;
	text-transform: uppercase;
	transition: all 300ms ease;
}
.sidebar a p.changed {
	color: #EBEBEB !important;
}
.sidebar a p:hover {
	color: #127FF3;
}
.sidebar a.active-link {
	margin-left: 0;
}
.sidebar a.active-link::before {
	content: '';
	width: 6px;
	height: 100%;
	background-color: #127FF3;
	margin-left: calc(1rem - 3px);
}
.sidebar a:last-child {
	position: absolute;
	bottom: 1.2rem;
}
.sidebar a img {
	width: 20px;
}
.admin-left-side {
    display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}
.approve-members {
    background-color: #FFFFFF;
    padding: 8px;
    flex: 1;
}
.approve-posts {
    background-color: #FFFFFF;
    padding: 8px;
    flex: 1;

}
.expiring-soon {
    background-color: #FFFFFF;
    padding: 8px;
    flex: 2;
}

.main-dasharea {
	width: 100%;
    display: flex;
    flex-direction: column;
	align-items: flex-start;
	flex-wrap: wrap;
}
.main-top {
    width: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.info-bar input {
	-webkit-appearance: none;
	position: relative;
	width: 50px;
	height: 30px;
	border-radius: 25px;
	background-color: #cccccc;
	transition: background .3s ease;
	outline: none;
	cursor: pointer;
}
.info-bar input::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 30%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	height: 1.25rem;
	width: 1.25rem;
	background-color: #127FF3;
	transition: left .3s ease;	
}

.info-bar input:checked {
	background-color: #282828;
}
.info-bar input:checked::after {
	left: 70%;
}

.score-and-track {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0;
}
.score-card {
    padding: 12px 8px;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    box-shadow: 2px 4px 6px 5px rgba(0,0,0,0.25);
}
.top-item-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.25rem
}
.items-listed {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.items-listed img {
    height: 100%;
}
.items-listed-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.items-listed-text p:first-child {
    font-weight: 700;
}

.admin-right-side {
    
}

.new-post-card {
	padding: 8px 6px;
	background-color: #FFFFFF;
	width: 100%;
	max-width: 380px;
	display: flex;
	flex-direction: column;
	box-shadow: 2px 5px 6px 4px rgba(0,0,0,0.25);
	margin: 0 auto 12px;
}
.new-post-card2 {
	padding: 8px 6px;
	background-color: #FFFFFF;
	width: 100%;
	max-width: 420px;
	height: auto;
	display: none;
	flex-direction: column;
	box-shadow: 2px 5px 6px 4px rgba(0,0,0,0.25);
	margin: 12px auto;
}
.new-post-card-image {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	aspect-ratio: 16/9;
}
.new-post-card-info {
	font-size: .70rem;
}
.new-item-name {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #FFFFFF;
	color: #282828;
	font-weight: 600;
	padding: 6px;
	border-top-left-radius: 10px;
	font-size: .75rem;
}
.new-post-card-image img {
	width: 100%;
	object-fit: cover;
	
}
.new-post-info-text {
	padding: 4px 0;
	font-size: .75rem;
	
	
}
.pending-btn {
	width: 100%;
	background-color: gray;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	border: none;
	outline: none;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
}
.yes-btn {
	width: 100%;
	max-width: 180px;
	background-color: darkgreen;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	border: none;
	outline: none;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
}
.no-btn {
	width: 100%;
	max-width: 180px;
	background-color: red;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	border: none;
	outline: none;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
}
.not-sure {
	width: 100%;
	max-width: 180px;
	background-color: darkorange;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 18px;
	border: none;
	outline: none;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
}
.approve-btn {
	background-color: #1C9205;
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
	max-width: 180px;
	padding: 5px;
	border: none;
	outline: none;
	text-transform: uppercase;
	color: #FFFFFF;
	letter-spacing: 1px;
	cursor: pointer;
}
.decline-btn {
	background-color: #B50104;
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
	max-width: 180px;
	padding: 5px;
	border: none;
	outline: none;
	text-transform: uppercase;
	color: #FFFFFF;
	letter-spacing: 1px;
	cursor: pointer;
}
.approve-me-btn {
    background-color: green;
    color: #fff;
    text-transform: uppercase;
    padding: 5px;
    border: none;
    border-radius: 3px;
    margin-bottom: 5px;
    cursor: pointer;
    /*transition: 0.2s ease;*/
}
.approve-me-btn2 {
    background-color: orange;
    color: #fff;
    text-transform: uppercase;
    padding: 5px;
    border: none;
    border-radius: 3px;
    margin-bottom: 5px;
    cursor: pointer;
    /*transition: 0.2s ease;*/
}

.denie-me-btn {
    background-color: red;
    color: #fff;
    text-transform: uppercase;
    padding: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.the-image2 {
    width: 100%;
    position: relative;
}
.show-blog-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px 5px 0 0;
}
.hide-form-btn {
    
}

@media screen and (max-width: 2100px) {
    .unapproved-area-text {
        grid-template-columns: repeat(3, 1fr);
    }
    .dash-post-cards { 
        grid-template-columns: repeat(4, 1fr);
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 1840px) {
    .left-sidebar {
        width: 90px;
    }
    .left-sidebar.slideIt {
        width: 345px;
    }
    .side-link-text {
        opacity: 0 ;
    }
    .side-link-text.changeIt {
        opacity: 1 !important;
    }
    .left-sidebar-brand span.slideIt {
        opacity: 1;
    }
    .main-area-container {
        margin-left: 90px;
    }
}
@media screen and (max-width: 1575px) {
    .dash-post-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    /*.main-left {
        width: 100%;
    }
    .main-rght {
        right: -320px;
        display:none;
        transition: all 480ms ease-in-out;
    }
    .main-rght.slidders {
        /*position: fixed;*/
        /*right: 0;
        height:auto;
        width: 100%;
        display:flex;
        justify-content: center;
        background-color: rgba(0,0,0,.45);
        z-index: 2;
        padding: 20px 0;
    }
    .show-tab.slidders {
        z-index: 3;
    }
    */
}
@media screen and (max-width: 1500px) { 
	.performance {
		grid-template-columns: repeat(2, 1fr);
	}
    .dash-post-cards, .unapproved-area-text {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 1100px) {
    .performance {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 960px) { 
	.unapproved-area-text {
		grid-template-columns: repeat(1, 1fr);
	}
}
@media screen and (max-width: 900px) {
    .list-of-store-options, .list-of-cats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 830px) {
	main {
        grid-template-columns: auto;
		display: flex;
    }
    .main-left {
        width: 100%;
    }
    .main-rght {
        right: -320px;
        display:none;
        transition: all 480ms ease-in-out;
    }
    #add-product-form2, .user-tab2 {
        display: inherit;
    }
    .new-post-card2 {
        display: flex;
    }
	.dash-post-cards {
        grid-template-columns: repeat(1, 1fr);
    }
    .post-cards {
        max-width: 100%;
    }
}
@media screen and (max-width: 720px) {
    .list-of-store-options, .list-of-cats {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .left-sidebar {
        left: -90px;
    }
    .left-sidebar.slideIt {
        left: 0;
    }
    .main-area-container {
        margin-left: 0;
    }
    .new-post-card {
        max-width: 300px;
    }
    .status-icons {
        width: 60px;
        height: 60px;
    }
}


