body {
    font-family: "Open Sans", sans-serif;
}
:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background-color: #fff;
}
::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-alt-color);
}
.page {
    min-height: 100vh;
    background-color: #f1f5f9;
}
.page h1 {
    margin: 20px 20px 40px;
}
@media (max-width: 767px) {
    .page h1 {
        margin: 10px 10px 40px;
    }
}
/* start component */
.page h1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 4px;
    width: 120px;
    background-color: #fff;
}
.page h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 4px;
    width: 50px;
    background-color: #000000;
}
/* end component */
/* start sidebar  */
.sidebar {
    width: 250px;
    box-shadow: 0 0 10px #ddd;
}
.sidebar > h3 {
    font-size: 16px;
    margin-bottom: 15px;
}
@media (max-width:767px) {
    .sidebar {
        width: 72px;
    }
}
@media (min-width:768px) {
    .sidebar > h3 {
    margin-bottom: 50px;
    font-size: 25px;
    }
    .sidebar > h3::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 75px;
    height: 2px;
    background-color: #000;
    }
    .sidebar > h3::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -31px;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #000;
        border: 3px solid #fff;
    }
}
.sidebar a {
    margin-bottom: 10px;
    transition: 0.3s;
}
.sidebar a:hover,
.sidebar a.active {
    background-color: #f6f6f6;
}
.sidebar a i {
    margin-right: 10px;
}
/* end sidebar  */
/* start head  */
.content {
    overflow: hidden;
}
.content .head .search::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f002';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var();
    font-size: 14px;
    color: var(--grey-color);
}
.content .head .search input {
    padding-left: 40px;
    border: 1px solid #ccc;
    transition: width .3s;
    width: 170px;
}
.content .head .search input:focus {
    outline: none;
    width: 200px;
}
@media (max-width:767px) {
    .content .head .search input {
        width: 170px;
    }
    .content .head .search input:focus {
        width: 180px;
    }
}
.content .head .search input::placeholder {
    transition: .3s;
} 
.content .head .search input:focus::placeholder {
    opacity: 0;
}
.content .head .profile{
    gap: 10px;
}
.content .head .notification::before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: var(--red-color);
    border-radius: 50%;
    top: -5px;
    right: -5px;
}
.content .head .profile img {
    width: 32px;
    height: 32px;
}
/* end head  */
/* start wrapper  */
.wrapper {
    margin: 0 20px;
    grid-template-columns: repeat(auto-fill,minmax(450px,1fr));
}
@media (max-width: 767px) {
    .wrapper {
        grid-template-columns: minmax(200px,1fr);
        margin: 0 10px;
        gap: 10px;
    }
}
/* end wrapper  */
/* start welcome box  */
.welcome {
    overflow: hidden;
}
.welcome .intro img {
    width: 200px;
    margin-bottom: -10px;
}
.welcome .avatar {
    width: 60px;
    height: 60px;
    margin: -30px 0 20px 20px;
    border: 5px solid #fff;
    border-radius: 50%;
}
.welcome .body {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
    .welcome .body {
        margin-top: 0;
    }
    .welcome .body .box {
        margin: 10px 0;
    }
    .welcome .body .box:not(:first-child) div {
        margin: 10px 0 0;
    }
    .welcome .body .box span{
        margin: 3px 0 0 0;
    }
}
.welcome a {
    margin-left: auto;
    transition: .3s;
}
.welcome a:hover {
    background-color: var(--blue-alt-color);
}
/* end  welcome box  */
/* start draft box  */
.draft {
    overflow: hidden;
}
.draft .inputs input {
    border: none;
}
.draft .inputs textarea {
    min-height: 180px;
    resize: none;
}
.draft .inputs input:focus,
.draft .inputs textarea:focus {
    outline: none;
}
.draft .link a {
    margin-left: auto;
    transition: .3s;
}
.draft .link a:hover {
    background-color: var(--blue-alt-color);
}
/* end draft box  */
/* start yearly target  */
.yearly-target {
    overflow: hidden;
}
.yearly-target .content .box i {
    width: 90px;
    height: 90px;
}
.yearly-target .content .box .out {
    height: 5px;
}
.yearly-target .content .box .out span {
    height: 5px;
}
.yearly-target .content .box .out span::before {
    content: attr(data);
    position: absolute;
    top: -27px;
    right: -15px;
    padding: 2px 4px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
}
.yearly-target .content .box .out span::after {
    content: '';
    border-width: 7px;
    border-style: solid;
    position: absolute;
    top: -8px;
    right: -6px;
}
.blue i,
.blue .out {
    background-color: #0075ff20;
}
.blue .out span,
.yearly-target .content .box.blue .out span::before {
    background-color: var(--blue-color);
}
.yearly-target .content .box.blue .out span::after {
    border-color: var(--blue-color) transparent transparent transparent;
}
.orange i,
.orange .out {
    background-color: #f59e0b20;
}
.orange .out span,
.yearly-target .content .box.orange .out span::before {
    background-color: var(--orange-color);
}
.yearly-target .content .box.orange .out span::after {
    border-color: var(--orange-color) transparent transparent transparent;
}
.green i,
.green .out {
    background-color: #22c55e20;
}
.green .out span,
.yearly-target .content .box.green .out span::before {
    background-color: var(--green-color);
}
.yearly-target .content .box.green .out span::after {
    border-color: var(--green-color) transparent transparent transparent;
}
/* end yearly target  */
/* start tickets  */
@media (min-width: 768px) {
    .tickets .content {
    grid-template-columns: repeat(auto-fill,minmax(45%,1fr));
    }
}
.tickets .content .box {
    border: 1px solid #eee;
}
/* end tickets  */
/* start latest news  */
.news .content .box img{
    width: 100px;
}
/*  end latest news  */
/* start tasks */
.tasks .delete {
    cursor: pointer;
    transition: 0.3s;
}
.tasks .delete:hover {
    color: var(--red-color);
}
.tasks .delete.op-0:hover {
    color: #f443366d;
}
/* end tasks */
/* start latest uploads */
.latest-uploads img {
    width: 50px;
}
/* end latest uploads */
/* start latest projects */
.last-projects img {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 150px;
    opacity: 0.1;
}
.last-projects ul::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 2px;
    height: 100%;
    background-color: var(--blue-color);
}
.last-projects ul li::before {
    content: '';
    position: absolute;
    left: -27px;
    top: -2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #fff;
    outline: 2px solid var(--blue-color);
    z-index: 1;
}
.last-projects ul li.done::before {
    background-color: var(--blue-color);
}
.last-projects ul li.current::before {
    background-color: #fff;
    animation: change-background .8s infinite alternate;
}
/* end latest projects */
/* start reminders  */
.reminders .text::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}
.reminders .text.blue {
    border-left: 3px solid var(--blue-color);
}
.reminders .text.red {
    border-left: 3px solid var(--red-color);
}
.reminders .text.green {
    border-left: 3px solid var(--green-color);
}
.reminders .text.orange {
    border-left: 3px solid var(--orange-color);
}
.reminders .text.blue::before {
    background-color: var(--blue-color);
}
.reminders .text.red::before {
    background-color: var(--red-color);
}
.reminders .text.orange::before {
    background-color: var(--orange-color);
}
.reminders .text.green::before {
    background-color: var(--green-color);
}
/* end reminders  */
/* start latest post  */
.latest-post img {
    width: 50px;
}
.latest-post > p {
    line-height: 1.4;
    letter-spacing: .1;
    min-height: 100px;
}
/* end latest post  */
/* start social */
.social i {
    transition: .3s;
    width: 50px;
    height: 50px;
}
.social i:hover {
    rotate: 6deg;
}
.twitter {
    background-color: rgba(29, 161, 242, 0.2);
    color: rgb(29, 161, 242);
}
.twitter i {
    background-color: rgb(29, 161, 242);
}
.twitter a {
    background-color: rgb(29, 161, 242);
}
.facebook {
    background-color: rgba(24, 119, 242, 0.2);
    color: rgb(29, 161, 242);
}
.facebook i {
    background-color: rgb(24, 119, 242);
}
.facebook a {
    background-color: rgb(24, 119, 242);
}
.youtube {
    background-color: rgba(255, 0, 0, 0.2);
    color: rgb(255, 0, 0);
}
.youtube i {
    background-color: rgb(255, 0, 0);
}
.youtube a {
    background-color: rgb(255, 0, 0);
}
.linkedin {
    background-color: rgba(0, 119, 181, 0.2);
    color: rgb(0, 119, 181);
}
.linkedin i {
    background-color: rgb(0, 119, 181);
}
.linkedin a {
    background-color: rgb(0, 119, 181);
}
/* end social */
/* start table  */
.responsive-table {
    overflow-x: auto;
}
table {
    border-spacing: 0;
    min-width: 1000px;
}
table th {
    text-align: left;
}
table tr {
    transition: .3s;
}
table tr:hover {
    background-color: #faf7f7;
}
table tr td {
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}
table img {
    width: 30px;
    border: 3px solid #fff;
    border-radius: 50%;
}
table img:not(:first-of-type) {
    margin-left: -20px;
}
/* end table  */
/* start settings */
.toggle-checkbox {
    appearance: none;
    display: none;
}
.toggle-switch {
    background-color: rgb(204, 204, 204);
    width: 78px;
    height: 32px;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    transition: 0.3s;
}
.toggle-switch::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--blue-color);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-switch {
    background-color: var(--blue-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
    content: '\f00c';
    left: 65%;
}
/* start site control */
.settings-page {
    grid-template-columns: repeat(auto-fill,minmax(450px,1fr));
}
@media (max-width: 767px) {
    .settings-page {
        grid-template-columns: minmax(200px,1fr);
        gap: 10px;
        margin: 0 10px 10px;
    }
}
.settings-page .site-control textarea {
    min-height: 150px;
    outline: none;
    resize: none;
}
.settings-page .site-control textarea::placeholder {
    color: var(--grey-color);
    font-size: 14px;
}
/* end site control */
/* start general info */
.general-info input {
    outline: none;
}
/* end general info */
/* start social info */
.social-info .social-box input {
    padding: 10px 10px 10px 50px;
    outline: none;
    border: 1px solid #ccc;
}
.social-info .social-box i {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    border-right: 1px solid #ccc;
    transition: .3s;
}
.social-info .social-box input:focus + i {
    color: #000;
}
/* end social info */
/* start widgets */
.widgets input {
    appearance: none;
    display: none;
}
.widgets label {
    position: relative;
    padding-left: 30px;
}
.widgets label::before {
    content: '';
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
    transition: .3s;
}
.widgets label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    left: 0;
    width: 16px;
    border: 2px solid var(--blue-alt-color);
    top: 0;
    color: #fff;
    border-radius: 3px;
    background-color: var(--blue-alt-color);
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(360deg);
    transition: .3s;
}
.widgets label:hover::before {
    border: 2px solid var(--blue-alt-color);
}
.widgets input[type='checkbox']:checked + label::after {
    transform: scale(1);
}
/* end  widgets */
/* start Backup */
.Backup-manager input {
    display: none;
}
.Backup-manager .radio input:checked + label::after {
    transform: scale(1);
}
.Backup-manager .radio input:checked + label::before {
    border: 1px solid var(--blue-color);
}
.Backup-manager .radio label {
    position: relative;
    padding-left: 30px;
}
.Backup-manager .radio label::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #ccc;
    left: 0;
    top: 50%;
    margin-top: -8.3px;
    transition: .3s;
}
.Backup-manager .radio label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--blue-color);
    border: 2px solid #fff;
    left: 1.7px;
    top: 4px;
    transition: .3s;
    transform: scale(0);
}
.Backup-manager .pay {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.Backup-manager .pay input:checked + .pay-box {
    border-color: var(--blue-color);
    color: var(--blue-color);
}
.Backup-manager .pay .pay-box {
    cursor: pointer;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #ccc;
    flex: 1;
    transition: .3s;
}
.Backup-manager .pay .pay-box i {
    margin: 0 auto 10px auto;
}
@media (max-width: 767px) {
    .Backup-manager .pay .pay-box {
        flex-basis: 100%;
    }
}
/* end Backup */
/* end settings */
/* start profile page */
.profile-page .widget-one {
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .profile-page {
        margin: 0 10px 10px 10px;
    }
    .profile-page .widget-one {
        margin-bottom: 10px;
    }
}
.profile-page .widget-one > div:first-child {
    width: 290px;
}
@media (max-width: 767px) {
    .profile-page .widget-one > div:first-child {
        width: 100%;
    }
    .profile-page .widget-one > div:first-child::before {
        display: none;
    }
}
.profile-page .widget-one > div:first-child {
    position: relative;
}
.profile-page .widget-one > div:first-child::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 350px;
    background-color: #eee;
}
.profile-page .widget-one .out {
    height: 6px;
    overflow: hidden;
}
.profile-page .widget-one .out span {
    height: 6px;
}
.profile-page img {
    width: 120px;
}
.profile-page .widget-one > div:nth-child(2) > div {
    transition: .3s;
}
.profile-page .widget-one > div:nth-child(2) > div:hover {
    background-color: #fafafa;
}
.profile-page .widget-one > div:nth-child(2) > div > div {
    flex-wrap: wrap;
    width: 80%;
}
@media (max-width: 767px) {
    .profile-page .widget-one > div:nth-child(2) > div > div span {
        width: 100%;
    }
    .profile-page .widget-one > div:nth-child(2) > div > div {
        width: 100%;
    }
    .profile-page .widget-one > div:nth-child(2) label div {
        margin: auto;
    }
}
.profile-page .widget-one > div:nth-child(2) > div > div span {
    color: #000;
    margin-bottom: 10px;
}
.profile-page .widget-one > div:nth-child(2) > div > div span > span{
    color: var(--grey-color);
}

.profile-page .widget-one > div:nth-child(2) label input {
    display: none;
}
.profile-page .widget-one > div:nth-child(2) label input:checked + div {
    background-color: var(--blue-color);
}
.profile-page .widget-one > div:nth-child(2) label input:checked + div::before {
    content: '\f00c';
    left: 70px;
}
.profile-page .widget-one > div:nth-child(2) label div {
    position: relative;
    width: 90px;
    height: 20px;
    border-radius: 20px;
    background-color: #eee;
    transition: .3s;
}
.profile-page .widget-one > div:nth-child(2) label div::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue-color);
    transition: .3s;
    font-size: 12px;
}
.profile-page .widget-two {
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 1200px) {
    .profile-page .widget-two {
        gap: 0;
    }
    .profile-page .widget-two div:nth-child(1) {
        flex-basis: 100%;
        margin-bottom: 10px
    }
}
@media (max-width: 767px) {
    .profile-page .widget-two div:nth-child(2) > div {
        flex-direction: column;
    }
    .profile-page .widget-two div:nth-child(2) > div img {
        margin: 0 auto 10px;
    }
    .profile-page .widget-two div:nth-child(2) > div p {
        margin-bottom: 10px;
    }
    .profile-page .widget-two div:nth-child(1) {
        text-align: center;
    } 
}
.profile-page .widget-two div:nth-child(1) {
    width: 400px;
}
.profile-page .widget-two div:nth-child(2) img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

/* end profile page */
/* start project page */
.project-page {
    grid-template-columns: repeat(auto-fill,minmax(450px,1fr));
}
@media (max-width: 767px) {
    .project-page {
        grid-template-columns: minmax(200px,1fr);
        gap: 10px;
        margin: 0 10px 10px 10px;
    }
}
.project-page > div > div:nth-child(1)::after {
    content: '12/2/2005';
    position: absolute;
    top: -10px;
    right: 0;
    color: var(--grey-color);
    font-size: 13px;
} 
.project-page div .image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}
.project-page div.image img:hover {
    position: relative;
}
.project-page div .image img:not(:first-of-type) {
    margin-left: -15px;
    border: 2px solid #fff;
}
.project-page > div div:nth-child(3) {
    text-align: right;
}
@media (max-width: 767px) {
    .project-page > div div:nth-child(3) > span{
        display: block;
        width: fit-content;
    }
    .project-page > div div:nth-child(3) > span:not(:first-child) {
        margin-top: 10px;
    }
}
.project-page div:nth-child(4) .out {
    width: 250px;
    height: 8px;
    background-color: #eee;
    border-radius: 6px;
}
@media (max-width: 767px) {
    .project-page div:nth-child(4) .out {
        width: 200px;
    }
}
.project-page div:nth-child(4) .out.red span {
    background-color: var(--red-color);
    height: 8px;
    border-radius: 6px;
}
.project-page div:nth-child(4) .out.green span {
    background-color: var(--green-color);
    height: 8px;
    border-radius: 6px;
}
.project-page div:nth-child(4) .out.blue span {
    background-color: var(--blue-color);
    height: 8px;
    border-radius: 6px;
}
/* end project page */
/* start courses page */
.courses {
    margin: 0 20px 20px 20px;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
}
@media (max-width: 767px) {
    .courses {
        gap: 10px;
        margin: 0 10px 10px 10px;
    }
}
.courses .box img.main-img {
    width: 100%;
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.courses .box img.person-img {
    width: 64px;
    height: 64px;
    position: absolute;
    border-radius: 50%;
    top: 20px;
    left: 20px;
    border: 2px solid #fff;
}
.text h3 {
    font-size: 18px;
}
.courses .box .text p {
    line-height: 1.6;
}
.courses .box .text a {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    bottom: -11.5px;
}
.courses .box .text {
    height: 180px;
}
/* end courses page */
/* start friends page */
.friends-page {
    margin: 0 20px 20px 20px;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
}
@media (max-width: 767px) {
    .friends-page {
        gap: 10px;
        margin: 0 10px 10px 10px;
    }
}
.friends-page .box::before {
    position: absolute;
    content: '\f095';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    background: #eee;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    left: 10px;
    color: #666;
    font-size: 13px;
    cursor: pointer;
}
.friends-page .box::after {
    position: absolute;
    content: '\f0e0';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    background: #eee;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    left: 47px;
    color: #666;
    font-size: 13px;
    cursor: pointer;
}
.friends-page .box .profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.friends-page .box div:nth-child(2) > div:nth-child(1) div {
    margin-bottom: 10px;
}
.friends-page .box div:nth-child(2) > div:nth-child(1) div::before {
    content: '\f118';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
    color: #666;
}
.friends-page .box div:nth-child(2) > div:nth-child(1) div:nth-child(2):before {
    content: '\f386';
}
.friends-page .box div:nth-child(2) > div:nth-child(1) div:nth-child(3):before {
    content: '\f1ea';
}
.friends-page .box div:nth-child(2) > div:nth-child(1) div span {
    font-size: 14px;
    font-weight: 500;
}
.friends-page .box div:nth-child(2) > div:nth-child(2) {
    font-size: 40px;
    font-weight: 700;
    opacity: .2;
}
/* end friends page */
/* start files */
.files-page {
    flex-wrap: wrap-reverse;
    align-items: flex-end;
}
.files {
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 20px;
    flex-basis: 75%;
}
.files .box img {
    position: relative;
    width: 64px;
    transition: .3s;
}
.files .box:hover img {
    transform: rotate(5deg);
}
.files-statistics {
    height: fit-content;
}
@media (max-width:1150px) {
    .files-statistics {
        flex-basis: 100%;
        margin: 0 20px 20px 20px;
    }
    .files {
        flex: 1;
    }
}
@media (max-width:767px) {
    .files-statistics {
        margin: 0 10px 10px 10px;
    }
    .files {
        margin: 0 10px 10px 10px;
        gap: 10px;
    }
    
}
.files-statistics .box i {
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0; 
    font-size: 16px;
}
.files-statistics .box i.red {
    background-color: #ff110051;
}
.files-statistics .box i.orange {
    background-color: rgba(245, 158, 11, 0.125);
}
.files-statistics .box i.blue {
    background-color: rgba(0, 117, 255, 0.125);
}
.files-statistics .box i.green {
    background-color: rgba(34, 197, 94, 0.125);
}
.files-statistics a {
    margin: 10px auto 0;
    transition: .3s;
}
.files-statistics a:hover {
    background-color: var(--blue-alt-color);
}
.files-statistics a:hover i {
    animation: up-and-down .4s infinite alternate linear;
}
/* end files */
/* start plans  */
.plans-page {
    grid-template-columns: repeat(auto-fill,minmax(450px,1fr));
    margin: 0 20px 20px 20px;
}
@media (max-width: 767px) {
    .plans-page {
        grid-template-columns: minmax(200px,1fr);
        gap: 10px;
        margin: 0 10px 10px 10px;
    }
}
.plans-page .box div {
    border: 3px solid #fff;
}
.plans-page .box div.blue {
    outline: 3px solid var(--blue-color);
}
.plans-page .box div.orange {
    outline: 3px solid var(--orange-color);
}
.plans-page .box div.green {
    outline: 3px solid var(--green-color);
}
.plans-page .box div h3 {
    font-size: 30px;
}
.plans-page .box div span {
    font-size: 40px;
    font-weight: bold;
}
.plans-page .box div span::before {
    content: '$';
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 20px;
    font-weight: bold;

}
.plans-page .box a {
    padding: 5px 20px;
}
/* end plans  */
/* start animation */
@keyframes change-background {
    from {
        background-color: var(--blue-color);
    }
    to {
        background-color: #fff;
    }
}
@keyframes up-and-down {
    from {
        transform: translatey(-2px);
    }
    to {
        transform: translatey(0);
    }
}
/* end  animation */