:root {
    --primary: orange;
    --primary_hover: orangered;
    --success: #198754;
    --success_hover: #157347;
    --grey: #6c757d;
    --grey_hover: #5c636a;
}

.nav-icon:hover span {
    text-decoration: none !important;
    color: initial !important;
}
.nav-icon span {
    font-size: 1rem;
}
.justify-content-space-around {
    justify-content: space-around !important;
}
.navbar-nav .dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    margin-left: 0.255em !important;
    vertical-align: 0.255em !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
}


/* GENERAL */
.pulse_effect {
    animation: pulse_effect 2s infinite;
}
@keyframes pulse_effect {
    0% {
        /* transform: scale(0.95); */
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        /* transform: scale(1); */
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        /* transform: scale(0.95); */
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
/* GENERAL - END */

/* HEADER */
.navbar-brand small {
    font-size: 12px;
    display: block;
    background: red;
    color: #fff;
    width: 100%;
    padding: 3px;
    border-radius: 5px;
    text-align: center;
}
/* HEADER - END */



/* responsive_devices */
.responsive_devices {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 160px;
    height: 100px;
    margin-left: -80px;
    margin-top: -50px;
    border-radius: 5px;
    background: #1e3f57;
    animation: dot1_ 3s cubic-bezier(0.55,0.3,0.24,0.99) infinite;
}

.responsive_devices:nth-child(2) {
    z-index: 11;
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px;
    border-radius: 3px;
    background: #3c517d;
    animation-name: dot2_;
}

.responsive_devices:nth-child(3) {
    z-index: 12;
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    background: #6bb2cd;
    animation-name: dot3_;
}

@keyframes dot1_ {
    3%,97% {
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
    }

    30%,36% {
        width: 80px;
        height: 120px;
        margin-top: -60px;
        margin-left: -40px;
    }

    63%,69% {
        width: 40px;
        height: 80px;
        margin-top: -40px;
        margin-left: -20px;
    }
}

@keyframes dot2_ {
    3%,97% {
        height: 90px;
        width: 150px;
        margin-left: -75px;
        margin-top: -45px;
    }

    30%,36% {
        width: 70px;
        height: 96px;
        margin-left: -35px;
        margin-top: -48px;
    }

    63%,69% {
        width: 32px;
        height: 60px;
        margin-left: -16px;
        margin-top: -30px;
    }
}

@keyframes dot3_ {
    3%,97% {
        height: 20px;
        width: 40px;
        margin-left: -20px;
        margin-top: 50px;
    }

    30%,36% {
        width: 8px;
        height: 8px;
        margin-left: -5px;
        margin-top: 49px;
        border-radius: 8px;
    }

    63%,69% {
        width: 16px;
        height: 4px;
        margin-left: -8px;
        margin-top: -37px;
        border-radius: 10px;
    }
}
/* responsive_devices | END */

/* dashboard cards */
.dashboard_card {
    padding: 1rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 3px 3px 5px #323232;
    border: 3px solid #323232;
}
.dashboard_card .title {
    display: flex;
    align-items: center;
}
.dashboard_card .title span {
    position: relative;
    padding: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
}
.dashboard_card.green .title span {
    background-color: #10B981;
}
.dashboard_card.red .title span {
    background-color: red;
}
.dashboard_card .title span svg {
    color: #ffffff;
}
.dashboard_card .title span svg,
.dashboard_card .title span i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1rem;
}
.dashboard_card .title-text {
    margin-left: 0.5rem;
    color: #374151;
    font-size: 18px;
    font-weight: 700;
    flex: 1;
    margin-top: inherit;
    margin-bottom: inherit;
}
.dashboard_card .percent {
    margin-left: 0.5rem;
    font-weight: 600;
    display: flex;
    margin: 0;
}
.dashboard_card.green .percent {
    color: #02972f;
}
.dashboard_card.red .percent {
    color: red;
}
.dashboard_card.red .percent svg {
    transform: rotate(180deg);
    margin-top: 0.2rem;
}
.dashboard_card .data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.dashboard_card .data p {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #1F2937;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    text-align: left;
}
/* dashboard cards | END */

/* hover button */
.hover_button {
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 0.4rem 1rem;
    transition: 0.2s;
    color: #000 !important;
    background: var(--primary);
    transform: translate(-0.25rem, -0.25rem);
    box-shadow: 0.25rem 0.25rem #000;
    text-decoration: none !important;
}
.hover_button:hover {
    background: var(--primary_hover);
    transform: translate(0);
    box-shadow: none;
}

.hover_button.success {
    color: #fff !important;
    background: var(--success);
}
.hover_button.success:hover {
    background: var(--success_hover);
}

.hover_button.grey {
    color: #fff !important;
    background: var(--grey);
}
.hover_button.grey:hover {
    background: var(--grey_hover);
}
/* hover button | END */

.review_average {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* edit & delete button */
/* .delete-button,
.edit-button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgb(20, 20, 20);
	border: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.164);
	cursor: pointer;
	transition-duration: 0.3s;
	overflow: hidden;
	position: relative;
}
.delete-button .delete-svgIcon,
.edit-button .edit-svgIcon {
	transition-duration: 0.3s;
}
.delete-button .delete-svgIcon {
	width: 15px;
}
.edit-button .edit-svgIcon {
	width: 17px;
}
.delete-button .delete-svgIcon path,
.edit-button .edit-svgIcon path {
	fill: white;
}
.delete-button:hover,
.edit-button:hover {
	width: 100px;
	border-radius: 50px;
	transition-duration: 0.3s;
	background-color: rgb(255, 69, 69);
	align-items: center;
}
.edit-button:hover {
    background-color: orange;
}
.delete-button:hover .delete-svgIcon,
.edit-button:hover .edit-svgIcon {
	width: 20px;
	transition-duration: 0.3s;
	transform: translateY(60%);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.delete-button::before {
	content: "Delete";
}
.delete-button::before,
.edit-button::before {
	display: none;
	content: "Delete";
	color: white;
	transition-duration: 0.3s;
	font-size: 2px;
}
.edit-button::before {
	content: "Edit";
}
.delete-button:hover::before,
.edit-button:hover::before {
	display: block;
	padding-right: 10px;
	font-size: 13px;
	opacity: 1;
	transform: translateY(0px);
	transition-duration: 0.3s;
} */
/* edit & delete button | END */