/* Start CSS Reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
    margin-block-start: 0;
    margin-block-end: 0;
}
* {	
	box-sizing: border-box;
}
table {
	border-collapse:collapse;
	border-spacing:0;
    width: 100%;
}
fieldset, img { 
	border:0;	
    max-width: 100%;
    object-fit: cover;
    object-position: top;
}
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
    scroll-padding-top: 30px;
}
:root {
	--magenta: #d36ec6;
	--magenta_l: #f3d8f0;
	--peach: #ff6382;
	--peach_xl: #fdf7f8;
	--peach_l: #fbebee;
	--pink: #c51f4c;
	--pink_m: #ff7eb6;
	--pink_l: #f9c0d4;
	--purple: #9085da;
	--purple_l: #efeef7;
	--green: #38d996;
	--green_l: #e7f7f0;
	--blue: #4fadff;
	--blue_l: #e9f2fb;
	--gray: #d1d1d1;
	--gray_l: #f4f4f4;
	--black: #2a2a2a;
	--black_m: #686868;
	--black_l: #8d8d8d;
    --red: #fc5758;
    --red_l: #f0cec3;
    --amber: #d09500;
    --amber_l: #ffeab3;
    --trans: all 250ms ease-in-out;

}
a {
    text-decoration: none;
    color: var(--pink);
}
.hideMe {
    display: none !important;
}
body {
    font-family: Inter,sans-serif;
    color: #70576a;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    background: #fdcedb;
    background: -webkit-linear-gradient(116deg, #fdcedb 0%, #ffe6ee 50%, #ffffff 100%);
    background: linear-gradient(116deg, #fdcedb 0%, #ffe6ee 50%, #ffffff 100%);
}
.wrapper {
    padding: 20px 40px;
    background-color: #ffffff52;
    border: 2px solid #ffffff5c;
    margin: 20px auto;
    border-radius: 16px;
    box-shadow: 0px 12px 16px 0px #b55e7799;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.logo {
    width: 100%;
    margin: 10px auto 0;
    border-bottom: 1px solid #fae4e7;
    padding-bottom: 16px;
    text-align: center;
}
.logo img {
    width: 120px;
}
h1, h2, h3 {
    font-family: Oswald,sans-serif;
    text-align: center;
}
.contain {
    display: flex;
    gap: 34px;
}
.menu {
    position: relative;
    display: flex;
    gap: 6px;
    flex-direction: column;
}
.main {
    min-width: 640px;
    border-left: 3px solid #f9e1e8;
    padding-left: 34px;
}
.stretch {
    grid-column: 1/-1;
}
.main h2 {
    padding-bottom: 8px;
    font-weight: 500;
    margin-right: auto;
    text-align: left;
}
.tile {
    background-color: #fff;
    padding: 16px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 6px 7px 13px #e9b7bfd1;
}
.top {
    display: flex;
    gap: 8px;
    align-items: center;
}
.top span {
    background-color: #c51f4c;
    padding: 6px;
    border-radius: 50%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
}
.top img {
    filter: hue-rotate(120deg) saturate(0) brightness(1000%);
}
.top h3 {
    width: 100%;
    color: #c51f4c;
    font-weight: 500;
    font-size: 15px;
    margin-left: -33px;
}
.mid {
    text-align: center;
}
.mid h1 {
    font-size: 70px;
    font-weight: 400;
    margin-block-start: -30px;
    margin-block-end: -10px;
}
.bottom {
    display: flex;
    gap: 4px;
}
.menu .icon {
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: block;
    padding: 4px;
    /*background-color: #d21a4c;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.logout img {
    border-radius: 50%;
    box-shadow: 0 0 6px #c51f4c;
}
.item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.active .icon, .item:hover .icon {
    background-color: #c51f4c;
}
.active .icon img, .item:hover .icon img {
    filter: hue-rotate(120deg) saturate(0) brightness(1000%);
}
.item:hover .logout img {
    filter: unset;
}
.item .txt {
    color: #70576a;
    font-size: 14px;
}
.item:hover .txt {
    color: #c51f4c;
}
.active .txt {
    color: #c51f4c;
}
.background {
    background-color: #fff;
    z-index: -1;
    top: -10px;
    position: absolute;
    left: -8px;
    min-height: 381px;
    padding: 5px 28px;
    border-radius: 44px;
    box-shadow: 5px 5px 5px #e9b7bfeb;
}
.btn {
    display: flex;
    min-width: fit-content;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 36px;
    background-color: #d21a4c;
    color: #fff;
    border: 2px solid transparent;
    width: fit-content;
    cursor: pointer;
    font-size: 16px;
}
.btn.ghost {
    color: #d21a4c;
    background-color: #fff;
    border-color: #FFC9D8;
}
.btn.mini {
    font-size: 14px;
    padding: 2px 10px;
}
.up {
    transition: var(--trans);
    transform: translate(0, 0);
}
.up:hover {
    transform: translate(0, -4px);
}
.action {
    display: flex;
    gap: 4px;
}
form.new {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 16px;
}
form.new .group {
    display: grid;                
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: -4px;
    display: block;
}
input[type="text"], input[type="file"], input[type="password"], input[type="email"], input[type="number"], input[type="time"], input[type="date"], select, textarea {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    border-radius: 5px;
    border: 0px solid var(--pink_l);
    background-color: var(--peach_xl);
    color: var(--pink);
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 2px 6px 0px rgb(156 0 42 / 15%);
}
input[type="file"] {
    padding: 7px;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="time"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
    outline: 1px solid #ff7eb6a6; /* Apply the desired border style for the active input */
}
input[type="time"], input[type="date"], select {
    color: var(--pink);
}
input[type="checkbox"].switch {
    appearance: none;
    width: 45px;
    height: 20px;
    background-color: #ddd;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all .2s ease-in-out;
}  
input[type="checkbox"].switch:checked {
    background-color: #e91e63;
}  
input[type="checkbox"].switch:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
    transform: scale(.7);
    left: 0;
    transition: all .2s ease-in-out;
}  
input[type="checkbox"].switch:checked:after {
    left: calc(100% - 20px);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/down_pick.svg");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 11px;
    background-size: 16px;
    cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    background-image: url("../images/date_pick.svg");
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: -2px;
    background-size: 16px;
    cursor: pointer;
}
input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("../images/time_pick.svg");
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--pink_m); /* Firefox */
    font-style: italic;
}
:-ms-input-placeholder {
    color: var(--pink_m); /* Internet Explorer 10-11 */
    font-style: italic;
}
::-ms-input-placeholder { 
    color: var(--pink_m); /* Microsoft Edge */
    font-style: italic;
}
.message {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    max-width: 280px;
    gap: 12px;
    box-shadow: 6px 7px 13px #e9b7bfd1;
    align-items: center;
    overflow: hidden;
}
.message h3 {
    display: flex;
    background-color: var(--pink);
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 16px;
    align-items: center;
}
.message .msgPic {
    display: inline-flex;
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.message img {
    width: 10px;
    aspect-ratio: 1;
}
.message p {
    padding: 0 16px 12px;
    font-size: 14px;
    width: 100%;
}
.message p a {
    margin-top: 6px;
}
.message .action {
    justify-content: flex-start;
}
.errorLine {
    display: block;
    padding-bottom: 8px;
}
tr {
    border-bottom: 2px solid #f3a7b421;
}
th, td {
    padding: 5px 2px;
    font-size: 14px;    
    vertical-align: top;
}
.row td {
    text-align: center;
}
.row span {
    display: block;
    font-size: 12px;
    font-weight: 600;
}
.txtLeft {
    text-align: left !important;
}
.txtRight {
    text-align: right !important;
}
/*.row span:before {
    content: "(";
}
.row span:after {
    content: ")";
}*/
footer {
    text-align: center;
    font-size: 13px;
    align-self: flex-end;
    width: 100%;
    padding: 16px 0 10px;
    border-top: 1px solid #fae4e7;
    margin-top: 20px;
}
@media only screen and (min-width: 1300px) {
    form {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (min-width: 1100px) {
    .blockRow {
        grid-template-columns: 1fr 320px;
    }
}
@media only screen and (min-width: 840px) {
    .login {
        grid-template-columns: 4fr 3fr;
    }
}