:root {
    --main-background: #eee;
    --main-color: #2196f3;
    --green-color:#4caf50;
    --orange-color: #ff9800;
    --red-color: #d53434;
    --white-color: white;
}
/* Start Global Component */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
} 
a {
    text-decoration: none;
    display: block;
}
*:focus {
    outline: none;
}
.address {
    margin-bottom: 30px;
}
.address::before {
    background-color: white;
    width: 100%;
}
.address::before,
.address::after {
    content: '';
    position: absolute;
    height: 2px;
    left: 0;
    bottom: -10px;
}
.address::after {
    background-color: black;
    width: 40%;
    transition: 0.3s;
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background-color: white;
}
::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
::-webkit-scrollbar-thumb:hover {
    background-color: #2196f3d6;
}
section > div {
    transition: 0.5s;
}
.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
}
.toggle-switch {
    width: 60px;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
.toggle-switch::before {
    /* font-family: "Font Awesome 6 Free"; */
    content: " ";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white-color);
    transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-switch {
    background-color: var(--main-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
    left: 42px;
}
/* Start Sidebar */
.sidebar {
    box-shadow: 0 0 10px #eee;
}

.sidebar .main-title {
    margin-bottom: 40px;
}

.sidebar .main-title::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background-color: black;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
}

.sidebar .main-title::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: black;
    border: 2px solid white;
    left: 50%;
    bottom: -16px;
    transform: translate(-50%);
}

.sidebar a.active,
.sidebar a:hover {
    background-color: #eee;
}
@media (max-width: 767px) {
    .sidebar {
        padding: 10px;
        
    }
    .sidebar > h3 {
        font-size: 16px;
    }
    .sidebar ul {
        align-items: center;
    }
    .sidebar li {
        width: fit-content;
        font-size: 12px;
    }
    .sidebar li i {
        margin: 0;
    }
    .sidebar li span {
        display: none;
    }
}
/* End Sidebar */
/* Start Dashboard */
.page {
    min-height: 100vh;
}
/* Start Head */
.content .head {
    margin-bottom: 10px;
}
.content .head img {
    width: 20px;
    height: 20px;
}
@media (max-width:767px) {
    .content .head {
        padding: 10px;
    }
    .content .head form {
        width: 180px;
        font-size: 12px;
    }
}
/* End Head */
/* Start global box */
@media (max-width:767px) {
    .content section {
        padding: 10px;
    }
    .content section .boxes {
        grid-template-columns: minmax(200px, 1fr);

    }
}
/* End global box */
/* Start box-1 */
.content section .boxes .box {
    overflow: hidden;
}
.content section .boxes .box .title img {
    width: 100px;
}
.content section .boxes .box .info {
    padding: 40px 0;
}
.content section .boxes .box .info img {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 5%;
    top: -25px;
}
.content section .boxes .box .info .details {
    background-color: #fff;
    border-top: 2px solid #eee;
}
.content section .boxes .box .info a {
    margin: 0 20px 0 auto;
}
@media (max-width:767px) {
    .content section .boxes .box .info {
    padding: 20px 0;
    }
    .content section .boxes .box .info .details {
        margin-top: 20px;
    }
}
/* End box-1 */
/* Start box-2 */
textarea {
    resize: none;
}
.content section .boxes .box .draft a {
    margin-left: auto;
}
/* End box-2 */
/* Star box-3 */
.content section .boxes .box .stats .mold .wallpaper:first-child {
    width: 70px;
    height: 70px;
}
.content section .boxes .box .stats .mold:first-child .wallpaper {
    background-color: #bee2ff;
}
.content section .boxes .box .stats .mold:nth-child(2) .wallpaper {
    background-color: rgba(255, 152, 0, 0.5);
}
.content section .boxes .box .stats .mold:last-child .wallpaper {
    background-color: rgba(139, 195, 74, 0.55);
}
.content section .boxes .box .stats .mold .bar .progress {
    width: 100%;
    height: 4px;
}
.content section .boxes .box .stats .mold .bar h4 {
    margin: 5px 0;
}
.content section .boxes .box .stats .mold:first-child .bar .progress {
    background-color: #bee2ff;
}
.content section .boxes .box .stats .mold:nth-child(2) .bar .progress {
    background-color: rgba(255, 152, 0, 0.5);
}
.content section .boxes .box .stats .mold:last-child .bar .progress {
    background-color: rgba(139, 195, 74, 0.55);
}
.content section .boxes .box .stats .mold .bar .progress span {
    display: block;
    height: 100%;
}
.content section .boxes .box .stats .mold .bar .progress span::before {
    content: attr(data-set);
    position: absolute;
    color: white;
    background-color: inherit;
    right: -18px;
    top: -30px;
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 14px;
}
.content section .boxes .box .stats .mold .bar .progress span::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -10px;
    border-width: 4px;
    border-style: solid;
}
.content section .boxes .box .stats .mold:first-child .bar .progress span::after {
    border-color: var(--main-color) transparent transparent transparent;
}
.content section .boxes .box .stats .mold:nth-child(2) .bar .progress span::after {
    border-color: var(--orange-color) transparent transparent transparent;
}
.content section .boxes .box .stats .mold:last-child .bar .progress span::after {
    border-color: var(--green-color) transparent transparent transparent;
}
/* Start box-4 */
.content section .boxes .box:nth-child(4) .cards .card {
    flex-basis: calc(50% - 10px);
}
/* End box-4 */
/* Start box-5 */
.content section .boxes .box .news .latest img {
    width: 80px;
    height: 50px;
}
/* End box-5 */
/* Start box-6 */
.opacity {
    opacity: 0.3;
}
/* End box-6 */
/* Start box-7 */
.content section .boxes .box .upload .latest img {
    width: 30px;
}
/* End box-7 */
/* Start box-9 */
.content section .boxes .box .check::before {
    content: '';
    position: absolute;
    height: calc(100% - 40px);
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    background-color: var(--main-color);
}
.content section .boxes .box .check .radio input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
}
.content section .boxes .box .check .radio label::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid var(--main-color);
    left: -8px;
}
input[type="checkbox"]:checked + label::after,
input[type="checkbox"]:not(:checked):hover + label::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: var(--main-color);
}
input[type="checkbox"]:not(:checked):hover + label::after {
    opacity: 0.2;
}
input[type="checkbox"]:checked + label {
    color: var(--main-color);
}
.content section .boxes .box:nth-child(9) img {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 150px;
}
/* End box-9 */
/* Start box-10 */
.content section .boxes .box .reminder {
    padding-left: 40px;
}
.content section .boxes .box .reminder li::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
}
.content section .boxes .box .reminder li:first-child {
    border-left: 2px solid var(--main-color);
}
.content section .boxes .box .reminder li:first-child::before {
    background-color: var(--main-color);
}
.content section .boxes .box .reminder li:nth-child(2) {
    border-left: 2px solid var(--green-color);
}
.content section .boxes .box .reminder li:nth-child(2):before {
    background-color: var(--green-color);
}
.content section .boxes .box .reminder li:nth-child(3) {
    border-left: 2px solid var(--orange-color);
}
.content section .boxes .box .reminder li:nth-child(3)::before {
    background-color: var(--orange-color);
}
.content section .boxes .box .reminder li:last-child {
    border-left: 2px solid var(--red-color);
}
.content section .boxes .box .reminder li:last-child::before {
    background-color: var(--red-color);
}
/* End box-10 */
/* Start box-11 */
.content section .boxes .box .post img {
    width: 50px;
    height: 50px;
}
.content section .boxes .box .post > p {
    padding-bottom: 40px;
}
/* End box-11 */
/* Start box-12 */
.content section .boxes .box .media li {
    overflow: hidden;
}
.content section .boxes .box  .media li:first-child {
    background-color: rgba(33, 149, 243, 0.338);
}
.content section .boxes .box  .media li:nth-child(2) {
    background-color: rgb(33 149 243 / 57%);
}
.content section .boxes .box .media li:nth-child(2) a,
.content section .boxes .box  .media li:nth-child(2) .icon span {
    background-color: #1c77bf;
}
.content section .boxes .box  .media li:nth-child(3) {
    background-color: rgb(213 52 52 / 56%);
}
.content section .boxes .box  .media li:last-child {
    background-color: #5d91bb;
}
.content section .boxes .box .media li:last-child a,
.content section .boxes .box .media li:last-child .icon span {
    background-color: #214f74;
}
.content section .boxes .box .media li .icon {
    padding-left: 0;
}
.content section .boxes .box .media li .icon span {
    width: 50px;
}
.content section .boxes .box .media li .icon span i {
    font-size: 24px;
}
/* End box-12 */
/* Start box-13 */
.content section .special {
    margin-top: 20px;
}
.content section .special table th {
    text-align: left;
}
.content section .special table tbody img {
    width: 30px;
}
.content section .special table tbody img:not(:first-child) {
    margin-left: -20px;
}
.content section .special table {
    border-spacing: 0;
    width: 100%;
}
.content section .special table td {
    border: 1px solid #eee;
    padding: 10px;
}
.content section .special table tr  {
    display: grid;
    grid-template-columns: repeat(auto-fit , minmax(100px, 1fr));
} 
/* End box-13 */
/* End Dashboard */
/* Start Setting */
.Setting textarea {
    min-height: fit-content;
}
.Setting .general label:not(:first-child) {
    margin-top: 15px;
}
.Setting form input {
    box-shadow: 0 1px 1px #eee;
}
.Setting form button {
    cursor: pointer;
}
.Setting .security button {
    height: 25px;
    cursor: pointer;
}
.Setting .social label {
    border: 1px solid #ccc;
}
.Setting .social input {
    border-left: 1px solid #ccc;
}
.Setting .social label i {
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Setting .backup {
    margin-bottom: 30px;
}
.Setting .choosen > div {
    border-radius: 10px;
    flex: 1;
    cursor: pointer;
}
.Setting .choosen > div:hover {
    border: 2px solid var(--main-color);
}

.Setting .choosen > div:hover i {
    color: var(--main-color);
}
.Setting .choosen > div:hover span {
    color: var(--main-color);
}
/* End Setting */
/* Start Profile */
.Profile .box {
    margin-bottom: 20px;
}
.Profile .who {
    border-right: 2px solid var(--main-background);
    padding: 40px 60px 40px 40px;
    margin-right: 20px;
}
.Profile .who img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.Profile .who .progress {
    width: 80%;
    height: 10px;
    margin: 10px auto;
}
.Profile .who .progress span {
    height: 100%;
}
.Profile .who i {
    color: #ff9800;
}
.Profile .details {
    padding: 20px 0;
}
.Profile .details > p {
    width: 20%;
    margin: 0;
}
.Profile .details p span {
    width: 100%;
}
@media (max-width: 991px) {
    .Profile .details p {
        flex: 1;
    }
}
@media (max-width: 767px) {
    .Profile .who {
        border: none;
        margin: 0;
        padding: 40px;
    }
    .Profile .details {
        gap: 10px;
    }
    .Profile .details > p{
        width: 100%;
        text-align: center;
    }
}
.Profile .skills {
    display: inline-block;
    width: 40%;
}
@media (max-width: 767px) {
    .Profile .skills {
        width: 100%;
    }
}
.Profile .activities img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.Profile .activities .date {
    text-align: right;
}
/* End Profile */
/* Start Projects */
.Projects .date {
    position: absolute;
    right: 10px;
    top: 20px;
} 
.Projects .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}
.Projects .avatars img:not(:first-child) {
    margin-left: -15px;
}
.Projects .icons {
    text-align: right;
}
.Projects .profit .progress {
    height: 10px;
    flex-basis: 50%;
}
.Projects .profit .progress span {
    height: 100%;
}
@media (max-width:767px) {
    .Projects .boxes .box .title h3 {
        font-size: 16px;
    }
}
/* End Projects */
/* Start Courser */
.courses .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.courses .container .box .person img  {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 10px;
    top: 10px;
    border: 2px solid var(--main-background);
}
.courses .container .box .image img {
    width: 100%;
    height: 100%;
}
.courses .container .info button {
    margin: 10px auto;
    display: block;
}
@media (max-width:767px) {
    .courses .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* End Courser */
/* Start Friends */
.friends .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.friends .container .card .connect {
    position: absolute;
    left: 10px;
    top: 10px;
}
.friends .container .card .info {
    align-self: center;
}
.friends .container .card .info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.friends .container .card .target > div > i {
    width: 25px;
}
@media (max-width:767px) {
    .friends .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* End Friends */
/* Start Files */
.files .container .boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px , 1fr));
}
.files .container .my-file > i {
    position: absolute;
    left: 5px;
    top: 5px;
}
.files .container .my-file .info {
    align-self: center;
    margin-top: 10px;
}
.files .container .my-file .info img {
    width: 50px;
    height: 50px;
}
.files .container .statistics {
    height: fit-content;
}
.files .container .statistics button {
    margin: auto;
} 
/* End Files */
/* Start Plans */
.plans .container .title {
    margin-bottom: 20px;
    border: 2px solid var(--white-color);
    font-size: 22px;
}
.plans .container .card:first-child .title {
    outline: 2px solid var(--green-color);
}
.plans .container .card:nth-child(2) .title {
    outline: 2px solid var(--main-color);
}
.plans .container .card:last-child .title {
    outline: 2px solid var(--orange-color);
}
@media (max-width:767px) {
    .plans .container .title {
        font-size: 18px;
    }
}
/* End Plans */