/* --------------------------------
    Componente Generale
-------------------------------- */

html {
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    padding: 30px;
    margin: 0;
    height: 100%;
    min-height: 100vh;
    font-family: Rubik, sans-serif;
}

b {
    font-weight: bold !important;
}

.main {
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    min-height: 300px;
    transition: transform 0.4s;
    padding: 30px 15px;
}

.main.scale-down {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

a {
    color: #000;
}

a:hover {
    color: #000;
}

::selection {
    background: #000 !important;
    color: #000;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    /* nice browsers */
    background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

@media only screen and (max-width: 768px) {
    body {
        padding: 10px;
    }
}

/* --------------------------------
    Meniu
-------------------------------- */
.cd-nav-trigger {
    /* hamburger icon */
    position: fixed;
    z-index: 3;
    top: 70px;
    right: 50px;
    height: 44px;
    width: 44px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}

.cd-nav-trigger span {
    /* icon created in CSS */
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 32px;
    height: 3px;
    background-color: black;
}

.cd-nav-trigger span::before, .cd-nav-trigger span:after {
    /* upper and lower lines of the menu icon */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.2s, width 0.2s;
    -moz-transition: -moz-transform 0.2s, width 0.2s;
    transition: transform 0.2s, width 0.2s;
}

.cd-nav-trigger span::before {
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.cd-nav-trigger span::after {
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}

.no-touch .cd-nav-trigger:hover {
    /* rotate trigger on hover */
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.no-touch .cd-nav-trigger:hover span::after,
.no-touch .cd-nav-trigger:hover span::before {
    /* animate arrow --> from hamburger to arrow */
    width: 50%;
}

.no-touch .cd-nav-trigger:hover span::before {
    -webkit-transform: translateX(1px) translateY(1px) rotate(45deg);
    -moz-transform: translateX(1px) translateY(1px) rotate(45deg);
    -ms-transform: translateX(1px) translateY(1px) rotate(45deg);
    -o-transform: translateX(1px) translateY(1px) rotate(45deg);
    transform: translateX(1px) translateY(1px) rotate(45deg);
}

.no-touch .cd-nav-trigger:hover span::after {
    -webkit-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -moz-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -ms-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    -o-transform: translateX(1px) translateY(-1px) rotate(-45deg);
    transform: translateX(1px) translateY(-1px) rotate(-45deg);
}

.cd-nav-container {
    position: fixed;
    z-index: 4;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    overflow-y: auto;
    background-color: #ffffff;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
    transition: transform 0.4s 0s, box-shadow 0s 0.4s;
}

.cd-nav-container.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
    -moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
    transition: transform 0.4s 0s, box-shadow 0s 0s;
}

.cd-nav-container header {
    padding: 1.5em 0 0 6.25%;
    height: 200px;
    position: relative;
}

.cd-nav-container h3 {
    font-size: 2rem;
    font-family: Rubik, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #5c4b51;
    vertical-align: top;
    display: inline-block;
    width: 60%;
    text-align: center;
    margin-top: 65px;
}

@media only screen and (max-width: 1023px) {
    .cd-nav-container h3 {
        margin-top: 40px;
        font-size: 1.7rem;
    }

    .cd-nav-container {
        width: 100%;
    }

    .cd-nav-container header {
        height: 150px;
    }


    .cd-nav-trigger {
        /* hamburger icon */
        top: 20px;
        right: 20px;
    }
}

.cd-close-nav {
    /* 'X' close icon */
    position: absolute;
    height: 44px;
    width: 44px;
    /* set the right position value so that it overlaps the .cd-nav-trigger*/
    right: 6.25%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.cd-close-nav::after, .cd-close-nav::before {
    /* lines of 'X' icon */
    content: '';
    position: absolute;
    height: 3px;
    width: 32px;
    left: 50%;
    top: 50%;
    background-color: #5c4b51;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-close-nav::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-close-nav::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.no-touch .cd-close-nav:hover {
    opacity: .8;
}

@media only screen and (min-width: 700px) {
    .cd-close-nav {
        right: 7.14%;
    }
}

.cd-nav {
    background-color: #f2f2f2;
}

.cd-nav::after {
    clear: both;
    content: "";
    display: table;
}

.cd-nav li {
    width: 50%;
    float: left;
    /* 68px is the navigation header height  and the menu items will be allocated in 3 rows */
    height: calc((100vh - 200px) / 3);
    min-height: 120px;
    border: 1px solid #ffffff;
    border-top: none;
    border-left: none;
}

.cd-nav li:nth-of-type(2n) {
    border-right-width: 0;
}

.cd-nav a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.no-touch .cd-nav a:hover i {
    -webkit-animation: cd-shock 0.3s;
    -moz-animation: cd-shock 0.3s;
    animation: cd-shock 0.3s;
}

.no-touch .cd-nav li a:hover span *,
.cd-nav li.cd-selected a span * {
    /* on hover or if selected - change text and icon color*/
    stroke: #ffffff;
}

.no-touch .cd-nav li a:hover em,
.cd-nav li.cd-selected a em {
    /* on hover or if selected - change text and icon color*/
    color: #ffffff;
}

.no-touch .cd-nav li a:hover,
.cd-nav li.cd-selected a {
    /* on hover or if selected - change background color*/
    background-color: #000;
}


.cd-nav span, .cd-nav em {
    position: absolute;
}

.cd-nav span {
    top: calc(50% - 48px);
    left: 48%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 48px;
    width: 48px;
}

.cd-nav span * {
    -webkit-transition: stroke 0.2s;
    -moz-transition: stroke 0.2s;
    transition: stroke 0.2s;
}

.cd-nav em {
    left: 0;
    width: 100%;
    top: calc(50% + 15px);
    color: #5c4b51;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


@media only screen and (min-width: 1024px) {
    .cd-nav li {
        width: 33.33%;
        float: left;
        /* 116px is the navigation header height  and the menu items will be allocated in 2 rows */
        height: calc((100vh - 200px) / 2);
        min-height: 250px;
    }

    .cd-nav li:nth-of-type(2n) {
        border-right-width: 1px;
    }

    .cd-nav li:nth-of-type(3n) {
        border-right-width: 0;
    }

    .cd-nav em {
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 1023px) {
    .cd-nav li {
        /* 116px is the navigation header height and the menu items will be allocated in 3 rows */
        height: calc((100vh - 150px) / 3);
        min-height: 200px;
    }

    .cd-nav span {
        height: 64px;
        width: 64px;
        top: calc(50% - 56px);
    }

    .cd-nav em {
        left: 0;
        font-size: 1.8rem;
        font-weight: 400;
        top: calc(50% + 21px);
    }
}

@-webkit-keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
    }
}

@-moz-keyframes cd-shock {
    0% {
        -moz-transform: rotate(0);
    }
    30% {
        -moz-transform: rotate(10deg);
    }
    60% {
        -moz-transform: rotate(-10deg);
    }
    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes cd-shock {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    30% {
        -webkit-transform: rotate(10deg);
        -moz-transform: rotate(10deg);
        -ms-transform: rotate(10deg);
        -o-transform: rotate(10deg);
        transform: rotate(10deg);
    }
    60% {
        -webkit-transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        -o-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

.cd-overlay {
    /* shadow layer visible when navigation is open */
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.35);
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s;
}

.cd-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0s;
    transition: opacity 0.4s 0s, visibility 0s 0s;
    z-index: 3;
}

.menu-icon {
    font-size: 60px;
    color: #000
}

.no-touch .cd-nav li a:hover i,
.cd-nav li.cd-selected a i {
    color: #fff
}

.menu-logo {
    display: inline-block;
    height: 150px;
}

@media only screen and (max-width: 1023px) {
    .menu-logo {
        height: 100px;
    }
}

/* --------------------------------
    Layout
-------------------------------- */

:focus {
    outline: none;
}

.container {
    margin: 0 auto;
}

.row {
    width: 100%;
    padding: 20px 0;
    margin-right: 0;
    margin-left: 0;
    position: relative;

}

.row.rowNoPadding {
    padding-bottom: 0;
    padding-top: 0;
}


.col-1 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(96% + 20px);
    width: calc(96% + 20px);
    flex: 0 0 calc(96% + 20px);
    margin-bottom: 30px
}

.col-2 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(48% + 5px);
    width: calc(48% + 5px);
    flex: 0 0 calc(48% + 5px);
    margin-bottom: 30px
}


.col-4 .col-2-3 {
    float: left;
    padding: 0;
    margin-left: 0;
    margin-right: 5px;
    position: relative;
    max-width: calc(62% + 10px);
    width: calc(62% + 10px);
    flex: 0 0 calc(62% + 10px);
    margin-bottom: 0;
}

.col-4 .col-3 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 27%;
    width: 27%;
    flex: 0 0 27%;
    margin-bottom: 0;
}


.col-5 .col-2-3 {
    float: left;
    padding: 0;
    margin-left: 0;
    margin-right: 5px;
    position: relative;
    max-width: calc(62% + 10px);
    width: calc(62% + 10px);
    flex: 0 0 calc(62% + 10px);
    margin-bottom: 0;
}

.col-5 .col-3 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 27%;
    width: 27%;
    flex: 0 0 27%;
    margin-bottom: 0;
}

.col-3 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 32%;
    width: 32%;
    flex: 0 0 32%;
    margin-bottom: 30px
}

.col-2-3 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(64% + 10px);
    width: calc(64% + 10px);
    flex: 0 0 calc(64% + 10px);
    margin-bottom: 30px
}

.col-2-4 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(48% + 5px);
    width: calc(48% + 5px);
    flex: 0 0 calc(48% + 5px);
    margin-bottom: 30px
}

.col-4 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(24% - 2.5px);
    width: calc(24% - 2.5px);
    flex: 0 0 calc(24% - 2.5px);
    margin-bottom: 30px
}

.col-5 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 19%;
    width: 19%;
    flex: 0 0 19%;
    margin-bottom: 30px
}

.col-6 {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 15%;
    width: 15%;
    flex: 0 0 15%;
    margin-bottom: 30px
}

.col-Nir {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 12.7%;
    width: 12.7%;
    flex: 0 0 12.7%;
    margin-bottom: 30px
}


.col-Fiș {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 15.67%;
    width: 15.67%;
    flex: 0 0 15.67%;
    margin-bottom: 30px;
    transition: .3s all;
    animation: animateElement linear .8s;
    animation-iteration-count: 1;
}

.col-Fac {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: 7%;
    width: 7%;
    flex: 0 0 7%;
    margin-bottom: 30px;
    transition: .3s all;
    animation: animateElement linear .8s;
    animation-iteration-count: 1;
}

.col-Fac .document {
    text-align: center;
    padding: 30px 20px 30px 20px;
}

.col-Fac .nume-document {
    font-weight: bold;
    padding: 0;
}

.col-Lecție {
    float: left;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    max-width: calc(40% + 5px);
    width: calc(40% + 5px);
    flex: 0 0 calc(40% + 5px);
    margin-bottom: 30px
}

.col-upload {
    float: left;
    margin-left: 10%;
    margin-right: 5px;
    padding: 0;
    position: relative;
    max-width: calc(77% + 15px);
    width: calc(77% + 15px);
    flex: 0 0 calc(77% + 15px);
    margin-bottom: 30px
}


.right {
    float: right;
}

.left {
    float: left;
}

.mobile {
    display: none;
}

.descarcă {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}

.card {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .065);
    border: none;
    color: #fff;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: .25rem;
    cursor: pointer;
    transition: .3s all;
    max-width: 95%;
    margin: 0 auto;
}

.card:hover {
    -ms-transform: scale(1.02, 1.02); /* IE 9 */
    -webkit-transform: scale(1.02, 1.02); /* Safari */
    transform: scale(1.02, 1.02);
    -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 1);
    -moz-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 1);
    box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 1);
    z-index: 9999;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 2rem;
}

.card.home {
    min-height: 150px;
}

.home h4 {
    font-size: 19px !important;
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}


.media-body {
    -ms-flex: 1;
    flex: 1;
}

.card h4 {
    font-size: 35px;
    line-height: 39px;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.media i {
    font-size: 44px;
}

.document {
    overflow: hidden;
    text-overflow: ellipsis;
    background: #000;
    color: #fff;
    padding: 30px 40px 30px 15px;
    border-radius: 20px;
    margin: 0 auto;
    max-height: 190px;
    transition: .3s all;
    cursor: pointer;
}

.icon-document {
    height: 88px;
}

.col-Fiș .delete {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    z-index: 99;
    cursor: pointer;
}

i.remove {
    font-size: 30px;
    color: red;
    text-align: right;
    display: inline-block;
    cursor: pointer;
    float: right;
    margin-left: 30px;
}

i.edit {
    font-size: 30px;
    color: green;
    text-align: right;
    display: inline-block;
    cursor: pointer;
    float: right;
}

@keyframes animateElement {
    0% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

.document:hover {
    -ms-transform: scale(1.02, 1.02); /* IE 9 */
    -webkit-transform: scale(1.02, 1.02); /* Safari */
    transform: scale(1.02, 1.02);
    -webkit-box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 1);
    -moz-box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 1);
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 1);
    z-index: 9999;
}

.nume-document {
    padding-left: 10px;
    word-break: break-all;
}

.chenar-document {
    display: inline-flex;
}

@media only screen and (max-width: 1680px) {
    .col-Fiș {
        max-width: 19%;
        width: 19%;
        flex: 0 0 19%;
    }
}

@media only screen and (max-width: 1366px) {
    .col-Fiș {
        max-width: 24%;
        width: 24%;
        flex: 0 0 24%;
    }

    .col-Fac {
        max-width: 9%;
        width: 9%;
        flex: 0 0 9%;
    }
}

@media only screen and (max-width: 1365px) {
    .col-Fiș {
        max-width: 47%;
        width: 47%;
        flex: 0 0 47%;
    }

    .col-Fac {
        max-width: 10%;
        width: 10%;
        flex: 0 0 10%;
    }
}

@media only screen and (max-width: 1023px) {
    .col-Fiș {
        max-width: 47%;
        width: 47%;
        flex: 0 0 47%;
    }

    .col-Fac {
        max-width: 12%;
        width: 12%;
        flex: 0 0 12%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .right {
        float: none;
        display: block;
        margin: 10px auto;
    }

    .left {
        float: none;
        display: block;
        margin: 10px auto !important;
    }

    .col-1, .col-2, .col-3, .col-4, .col-5, .col-2-3, .col-2-4, .col-6, .col-Nir, .col-Lecție, .col-upload {
        max-width: 89%;
        width: 89%;
        flex: 0 0 89%
    }

    .col-upload {
        margin-left: 5px;
        margin-right: 5px;
    }

    .sort {
        margin-bottom: 20px;
        text-align: center;
    }

    .sort > a {
        margin-left: 5px;
        margin-right: 5px;
    }

    @media only screen and (max-width: 768px) {
        .col-Fiș {
            max-width: 89%;
            width: 89%;
            flex: 0 0 89%;
        }

        .col-Fac {
            max-width: 23%;
            width: 23%;
            flex: 0 0 23%;
        }
    }
}

/* --------------------------------
    Inputs
-------------------------------- */

/*  Text Input  */


.input {
    border: 1px solid #ccc;
    padding: 7px;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
    background: transparent;
    position: relative;
}

textarea.input {
    max-height: 300px !important;
    height: 300px;
    resize: none;
    line-height: 23px;
}

.effect-20 {
    border: 1px solid #ccc;
    padding: 7px 14px;
    transition: 0.4s;
    background: transparent;
    z-index: 2;
}

.effect-20 ~ .focus-border:before,
.effect-20 ~ .focus-border:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
}

.effect-20 ~ .focus-border:after {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.effect-20 ~ .focus-border i:before,
.effect-20 ~ .focus-border i:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: #000;
    transition: 0.4s;
}

.effect-20 ~ .focus-border i:after {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
}

.effect-20:focus ~ .focus-border:before,
.effect-20:focus ~ .focus-border:after,
.has-content.effect-20 ~ .focus-border:before,
.has-content.effect-20 ~ .focus-border:after {
    width: 100%;
    transition: 0.3s;
    z-index: 6;
}

.effect-20:focus ~ .focus-border i:before,
.effect-20:focus ~ .focus-border i:after,
.has-content.effect-20 ~ .focus-border i:before,
.has-content.effect-20 ~ .focus-border i:after {
    height: 100%;
    transition: 0.4s;
    z-index: 6;
}

.effect-20 ~ label {
    position: absolute;
    left: 14px;
    width: 100%;
    top: 10px;
    color: #aaa;
    transition: 0.3s;
    z-index: 1;
    letter-spacing: 0.5px;
}

.effect-20:focus ~ label, .has-content.effect-20 ~ label {
    top: -18px;
    left: 0;
    font-size: 12px;
    color: #000;
    transition: 0.3s;
    z-index: 6;

}


/*  Checkbox  */

.cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    transition: all 0.2s ease;
}

.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.cbx span:last-child {
    padding-left: 8px;
}

.cbx:hover span:first-child {
    border-color: #000;
}

.inp-cbx:checked + .cbx span:first-child {
    background: #000;
    border-color: #000;
    animation: wave 0.4s ease;
}

.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

/*  radio  */

.btn-radio {
    cursor: pointer;
    display: inline-block;
    float: none;
    -webkit-user-select: none;
    user-select: none;
}

.btn-radio:not(:first-child) {
    margin-left: 20px;
}

@media screen and (max-width: 480px) {
    .btn-radio {
        display: block;
        float: none;
    }

    .btn-radio:not(:first-child) {
        margin-left: 0;
        margin-top: 15px;
    }
}

.btn-radio svg {
    fill: none;
    vertical-align: middle;
}

.btn-radio svg circle {
    stroke-width: 2;
    stroke: #000000;
}

.btn-radio svg path {
    stroke: #000;
}

.btn-radio svg path.inner {
    stroke-width: 6;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
}

.btn-radio svg path.outer {
    stroke-width: 2;
    stroke-dasharray: 57;
    stroke-dashoffset: 57;
}

.btn-radio input {
    display: none;
}

.btn-radio input:checked + svg path {
    transition: all 0.4s ease;
}

.btn-radio input:checked + svg path.inner {
    stroke-dashoffset: 38;
    transition-delay: 0.3s;
}

.btn-radio input:checked + svg path.outer {
    stroke-dashoffset: 0;
}

.btn-radio span {
    display: inline-block;
    vertical-align: middle;
}


/*  Select  */

select {

    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 3px solid #000;
    background: #000;
    background-image: none;
    padding: 0 14px;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    display: flex;
    height: 35px;
    line-height: 35px;
    background: #fff;
    overflow: hidden;
    flex: 1;
    color: #000;
    cursor: pointer;
    box-sizing: border-box;
    letter-spacing: 1px;
    width: 100%
}


.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1.5em;
    background: #000;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
    color: #fff;
}

.select:hover::after {
    background: #000;
}

.selectLabel {
    position: absolute;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 0.5px;
    top: -18px;
    left: 0;
    font-size: 12px;
    color: #000;
    z-index: 6;
}

select option {
    background: #000;
    color: #fff;
    box-shadow: inset 20px 20px #000
}

select option:checked {
    background: #000;
    color: #fff;
    box-shadow: inset 20px 20px #000
}


/* --------------------------------
    Buttons
-------------------------------- */
.buton {
    width: 210px;
    height: 50px;
    font-size: 16px;
    font-family: Rubik, sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background: -webkit-linear-gradient(-135deg, #000, #4158d0);
    background: -o-linear-gradient(-135deg, #000, #4158d0);
    background: -moz-linear-gradient(-135deg, #000, #4158d0);
    background: linear-gradient(-135deg, #000, #4158d0);
    transition: all 0.5s ease;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
}

.buton button, .buton input[type=submit] {
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
}

.butonClasic {
    width: 210px;
    height: 50px;
    font-size: 16px;
    font-family: Rubik, sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    background: #000;
    transition: all 0.5s ease;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
}

.butonClasic:hover {
    background: #000000;
}

.butonClasic button, .butonClasic input[type=submit] {
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
}

.back {
    position: absolute;
    display: none !important;
}

.is-active {
    box-shadow: 0 20px 5px -10px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
}

.container-buton {
    text-align: center;
    width: 100%;
}

.docx {
    outline: none;
    background: url("../images/icons/docx.png") no-repeat;
    height: 88px;
    width: 100px;
    border: none;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.pdf {
    outline: none;
    background: url("../images/icons/pdf.png") no-repeat;
    height: 88px;
    width: 100px;
    border: none;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

@media only screen and (max-width: 1023px) {
    .back {
        position: relative;
        margin: inherit !important;
        margin-bottom: 40px !important;
    }
}

/* --------------------------------
    Date Picker
-------------------------------- */

.wdp .wdp-container {
    font-family: Rubik, sans-serif;
}

.wdp-date-header, .wdp-week-header {
    letter-spacing: 1px;
}

.wdp-header {
    background: #000 !important;
}

.wdp .wdp-container .wdp-header svg {
    fill: #fff;
}

.wdp .wdp-container .wdp-header svg:hover {
    fill: #000;
    cursor: pointer;
}

.wdp .wdp-container .wdp-body .wdp-date-container .wdp-date-body .wdp-week-container .wdp-week-header .wdp-week li,
.wdp .wdp-container .wdp-body .wdp-date-container .wdp-date-header svg,
.wdp .wdp-container .wdp-body .wdp-date-container .wdp-date-body .wdp-week-container .wdp-week li,
.wdp .wdp-container .wdp-body .wdp-date-container .wdp-date-header span,
.wdp .wdp-container .wdp-body .wdp-date-container .wdp-date-body .wdp-list-container .wdp-list li {
    cursor: pointer;
}

.wdp .wdp-container .wdp-date-container ul li.wdp-active:before {
    background: #000;
}

@media only screen and (max-width: 1023px) {
    .wdp .wdp-container {
        width: 90% !important;
    }

    .wdp {
        width: 100% !important;
    }
}

/* --------------------------------
    Uploads
-------------------------------- */

.dropzone {
    border: 2px dashed #000;
    max-width: 80%;
    margin: 0 auto;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    background: #000;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    background: #fff;
}

.dropzone .dz-preview .dz-image {
    width: 250px;
}

@media only screen and (max-width: 1023px) {
    .dropzone {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* --------------------------------
    Switch
-------------------------------- */

.custom-switch {
    text-align: center;
    line-height: 11px;
}

.custom-switch .custom-switch-input:checked + .custom-switch-btn {
    background: #000;
}

.text-success {
    color: #000 !important;
}

.custom-switch .custom-switch-input + .custom-switch-btn {
    background: #000;
}

.custom-switch.custom-switch-label-danu .custom-switch-input + .custom-switch-btn {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='38.85714' y='23.75' font-size='12px' font-family='Rubik, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3ENu%3C/text%3E%3C/svg%3E");
}

.custom-switch.custom-switch-label-danu .custom-switch-input:checked + .custom-switch-btn {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='38'%3E%3Ctext x='9.71429' y='23.75' font-size='12px' font-family='Rubik, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji' fill='%23fff'%3EDa%3C/text%3E%3C/svg%3E");
}

.toggleLabel {
    position: relative;
    letter-spacing: 0.5px;
    color: #aaa;
    z-index: 1;
    bottom: 12px;
    margin-right: 10px;
}

/* --------------------------------
        Erori
-------------------------------- */

#erori, #eroriPopup {
    color: red;
    line-height: 20px;
}

/* --------------------------------
    Tabel
-------------------------------- */

.container-table100 {
    width: 100%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.table {
    width: 100%;
    display: table;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .table {
        display: block;
    }
}

.table-row {
    display: table-row;
    background: #f9f9f9;
}

.table-row.header {
    color: #ffffff;
    background: #000;
}

@media screen and (max-width: 1024px) {
    .table-row {
        display: block;
    }

    .table-row.header {
        padding: 0;
        height: 0;
    }

    .table-row.header .cell {
        display: none;
    }

    .table-row .cell:before {
        font-family: Rubik, sans-serif;
        font-weight: 700;
        font-size: 12px;
        color: #000;
        line-height: 1.2;
        text-transform: uppercase;
        margin-bottom: 13px;
        content: attr(data-title);
        min-width: 98px;
        display: block;
    }
}

.cell {
    display: table-cell !important;
}

.header .cell > a {
    color: #ffffff;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .cell {
        display: inline-block !important;
    }

    .header .cell > a {
        color: transparent;
    }
}

.table-row .cell {
    font-family: Rubik, sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.table-row.header .cell {
    font-family: Rubik, sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    font-weight: 500;
    padding-top: 19px;
    padding-bottom: 19px;
}

.table-row.header:hover {
    background: #000;
}

.table-row .cell:nth-child(1) {
    width: calc(33.3% + 1px);
    padding-left: 40px;
}

.table-row .cell {
    width: 33.3%;
    display: inline-block;
}

.table-row .four.cell:nth-child(1) {
    width: calc(25% + 1px);
    padding-left: 40px;
}

.table-row .four.cell {
    width: 25%;
    display: inline-block;
}

.table-row .five.cell:nth-child(1) {
    width: calc(20% + 1px);
    padding-left: 40px;
}

.table-row .five.cell {
    width: 20%;
    display: inline-block;
}

.table-row .two.cell:nth-child(1) {
    width: calc(50% + 1px);
    padding-left: 40px;
}

.table-row .two.cell {
    width: 50%;
    display: inline-block;
}

.table, .table-row {
    width: 100% !important;
}

.table-row:hover {
    background-color: #fff;
    cursor: pointer;
    background: none;
}

.finalizat {
    background: url(
    data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQ0lEQVQoU4XQywkAIAwDULtA9p+zCygRFD9tk0NODwIxd+9NBICZgkQ0JVyIgyk8UQpfFMIIfTBDF6zQhgpNyFJf0gzDAEaIaJj47AAAAABJRU5ErkJggg==
    ) repeat;
}

@media (max-width: 1024px) {
    .table-row {
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 18px;
        padding-top: 30px;
        padding-right: 15px;
        margin: 0;
    }

    .table-row .cell, .table-row .four.cell, .table-row .two.cell, .five.cell {
        border: none;
        padding-left: 30px;
        padding-top: 16px;
        padding-bottom: 16px;

    }

    .table-row .cell:nth-child(1), .table-row .four.cell:nth-child(1), .table-row .two.cell:nth-child(1), .table-row .five.cell:nth-child(1) {
        padding-left: 30px;
    }

    .table-row .cell {
        font-family: Rubik, sans-serif;
        font-size: 18px;
        color: #555555;
        line-height: 1.2;
        font-weight: unset !important;
    }

    .table, .table-row, .cell {
        width: 100% !important;
    }
}

/* --------------------------------
    Tipografie
-------------------------------- */

h2.titlu {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 33px;
}

h2.titlu:after {
    content: "";
    color: #000;
    display: block;
    border-bottom: 4px solid #000;
    height: 0;
    width: 22%;
    margin: 0 auto;
    margin-top: 12px;
    border-radius: 5px;
}

h2.titlu:before {
    content: "";
    color: #000;
    display: block;
    border-top: 4px solid #000;
    height: 0;
    width: 22%;
    margin: 0 auto;
    margin-bottom: 12px;
    border-radius: 5px;
}

h3.titlu {
    font-size: 25px;
    font-weight: 700;
    display: block;
    color: #000;
}

h3.titlu::after {
    content: "";
    color: #000;
    display: block;
    border-bottom: 4px solid #000;
    height: 0;
    width: 170px;
    margin-top: 12px;
    border-radius: 5px;
}

h3.titlu2 {
    font-size: 25px;
    font-weight: 700;
    display: block;
    color: #000;
}

h3.titlu2::after {
    content: "";
    color: #000;
    display: block;
    border-bottom: 4px solid #000;
    height: 0;
    width: 170px;
    margin-top: 12px;
    border-radius: 5px;
}

h3.titlu3 {
    font-size: 25px;
    font-weight: 700;
    display: block;
    color: #000;
}

h3.titlu3::after {
    content: "";
    color: #000;
    display: block;
    border-bottom: 4px solid #000;
    height: 0;
    width: 170px;
    margin-top: 12px;
    border-radius: 5px;
}

hr.dividerTitlu {
    width: 20%;
    height: 4px;
    background: #000;
    border: none;
    position: absolute;
    top: 40px;
}

.fărăTVA {
    font-size: 13px;
}

.detaliiLecție {
    font-weight: bold;
    color: #000;
    font-size: 20px;
}

.titluLecție {
    font-weight: bold;
    color: black;
    font-size: 20px;
}

.valoriFactură {
    font-weight: bold;
    color: #000;
    font-size: 20px;
}

/* --------------------------------
    Paginație
-------------------------------- */

.page {
    display: none;
}

.page-active {
    display: table-row-group;
}

li.page {
    display: inline-block;
}

@media (max-width: 1024px) {
    .page-active {
        display: block;
    }
}

#pagination {
    justify-content: center;
    margin-top: 30px;
}

#pagination > li > a {
    background: #000;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    transition: all 0.5s ease;
    font-size: 18px;
}

#pagination > li > a:hover {
    background: #000;
}

#pagination > li.active > a {
    background: #000;
}

.pagination {
    flex-wrap: wrap;
}

/* --------------------------------
    Gradienți
-------------------------------- */

.gradient1 {
    background: #17ead9;
    background: -webkit-linear-gradient(45deg, #17ead9, #6078ea) !important;
    background: linear-gradient(45deg, #17ead9, #6078ea) !important;
}


.gradient2 {
    background: #f54ea2;
    background: -webkit-linear-gradient(45deg, #f54ea2, #ff7676) !important;
    background: linear-gradient(45deg, #f54ea2, #ff7676) !important;
}

.gradient3 {
    background: #42e695;
    background: -webkit-linear-gradient(45deg, #42e695, #3bb2b8) !important;
    background: linear-gradient(45deg, #42e695, #3bb2b8) !important;
}

.gradient4 {
    background: #ffdf40;
    background: -webkit-linear-gradient(45deg, #ffdf40, #ff8359) !important;
    background: linear-gradient(45deg, #ffdf40, #ff8359) !important;
}

/* --------------------------------
    Modal Popup
-------------------------------- */

.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 102;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: .64s ease-in-out;
}

.popup-inner {
    position: relative;
    bottom: -100vw;
    right: -100vh;
    max-width: 600px;
    max-height: 400px;
    width: 60%;
    height: 80%;
    background-color: #fff;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
    transition: .64s ease-in-out;
    border-radius: 20px;
    padding: 30px;
}


.popup-inner-formular {
    position: relative;
    bottom: -100vw;
    right: -100vh;
    max-width: 900px;
    max-height: 600px;
    width: 80%;
    height: 80%;
    background-color: #fff;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
    transition: .64s ease-in-out;
    border-radius: 20px;
    padding: 30px;
}


.popup:target {
    visibility: visible;
    opacity: 1;
}

.popup:target .popup-inner, .popup:target .popup-inner-formular {
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.popup__close {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 3rem;
    height: 3rem;
    font-size: .875rem;
    border-radius: 100%;
    background-color: #000;
    z-index: 104;
    color: #fff;
    line-height: 3rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.popup__close:hover {
    color: #000 !important;
    text-decoration: none;
    font-weight: bold;
}

.popup-inner h2 {
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.popup-inner-formular h2 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

@media only screen and (max-width: 1023px) {
    .popup-inner-formular {
        width: 90%;
        height: 80%;
        max-height: 80%;
        padding-left: 5px;
        padding-right: 0;
        padding-bottom: 2px;
        padding-top: 20px;
        top: 2%;
    }

    .popup-inner {
        width: 90%;
        height: 60%;
        max-height: 80%;
    }

}