body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    background: url(../images/airplane-2037961.jpg);
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
}

header {
    float: left;
    width: 100%;
    padding: 10px 10px 0 10px;
}

.header {
    float: left;
    width: 100%;
    background: #FFF;
    border-radius: 10px;
}

.site-logo {
    width: 140px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    padding: 5px 20px;
    background: #FFF;
}

.site-logo img {
    width: 100%;
}

.container-card {
    float: left;
    width: 100%;
    height: calc(100vh - 140px);
    position: relative;
    overflow: hidden;
}

.licence-card {
    position: absolute;
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    margin-top: 10px;
    background: linear-gradient(to bottom right, #1156a5, #bba583);
    overflow: hidden;
    left: 100%;
    transition: all 0.6s ease;
}

.licence-card.active {
    left: 0;
}

.licence-card-inner {
    float: left;
    width: 100%;
    color: #FFF;
    /* background: url(../images/card-bg.png); */
    background-size: cover;
    background-position: center;
}

.profile-img {
    padding: 0px;
    max-width: 180px;
}

.profile-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 5px #ccc;
}

.licence-card-title {
    float: left;
    width: 100%;
    background: #1156a5;
    padding: 5px;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 28px;
    box-shadow: 0 0 2px #666;
}

.sub-title {
    float: left;
    width: 100%;
    padding: 5px 0 5px 15px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    border-bottom: 1px solid #1156a5;
    margin-bottom: 20px;
    background: rgba(17, 86, 165, 0.5);
}

.licence-card-content {
    float: left;
    width: 100%;
    padding: 30px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    height: calc(100vh - 260px);
    /* display: flex;
    align-items: center; */
    overflow: hidden;
    overflow-y: auto;
}

.licence-card-content.no-footer {
    height: calc(100vh - 200px);
}

.licence-card-form {
    float: left;
    width: 100%;
}

.licence-card-footer {
    float: left;
    width: 100%;
    background: #bba583;
    padding: 10px 30px;
    text-align: center;
    color: #FFF;
    font-weight: 600;
    font-size: 24px;
    box-shadow: 0 0 2px #666;
}

.card-footer-left {
    float: left;
}

.card-footer-right {
    float: right;
}

.card-btn {
    background: linear-gradient(to bottom right, #1156a5, #bba583);
    border: 2px solid rgba(17, 86, 165, 0.5) !important;
    color: #FFF;
}

.table-data {
    background: rgba(17, 86, 165, 0.5);
}

.table-data table {
    color: #FFF;
}

.table-data table th {
    background: #bba583;
    color: #1156a5;
    border: 1px solid #fff;
}

.table-data table th,
.table-data table td {
    border-color: rgba(255, 255, 255, 0.2);
}

.color-danger {
    color: #770000;
}

.licence-no {
    width: 300px;
    margin: 0 auto;
    margin-top: 50px;
}


/*----------------- Scroolbar Start here ------------------------*/

::-webkit-scrollbar {
    width: 4px;
    height:4px;
    visibility: hidden;
}

::-webkit-scrollbar-thumb {
    background: #636363;
    /*background: linear-gradient(to bottom, #15458f, #1c66d6);*/
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #F1F1F1;
}

* {
    /*overflow-y: auto;*/
    scrollbar-color: #1156a5 #959595;
    scrollbar-width: thin;
}

select::-webkit-scrollbar {
    width: auto;
}

select {
    scrollbar-width: unset;
}


/*----------------- Scroolbar End here ------------------------*/