	
:root {
    --blue: #ffd800;
    --lightblue: #636e7b;
    --green: #77d55e;
    --yellow: #ecbe7d;
    --red: #ec7d92;
    --grey: #D3D3D3	;
    
}

/* Base */
body {
    font-family: 'Sofia Pro';
    font-weight: 500;
    color: var(--lightblue);
    line-height: 1.4;
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--blue);
}

a:hover,
a:focus {
    text-decoration: none;
    color: var(--blue);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #2a2b36;
}

button {
    padding: 0;
    border: 0;
    outline: 0 !important;
    background: transparent;
    line-height: 1;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
}

.color-blue {
    color: var(--blue);
}

.color-green {
    color: var(--green);
}

.color-yellow {
    color: var(--yellow);
}

.btn {
    padding: 10px 20px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 7px;
    font-weight: 600;
}

.btn-sm {
    padding: 7px 20px;
}

.btn-blue {
    background: var(--blue);
    color: white;
}

.btn-green {
    background: var(--green);
    color: white;
}

.btn-light {
    background: #edf1f9;
    color: #26292e;
}

.btn-gray {
    background: var(--lightblue);
    color: white;
}

.btn-gray:hover,
.btn-gray:focus {
    background: #56606b;
    color: white;
}

/* Header */
.header {
    background: var(--blue);
    padding: 0px 0 50px;
    overflow: hidden;
}

    #xClose {
        position: absolute;
        top: -50px;
        left: -20px;
        width: 50px;
        height: 120px;
        //background-color: rgba(255, 255, 255, 0.56);
        transform: rotate(45deg);
    }

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header a {
    line-height: 1;
}

.menu-icon a {
    color: white;
}

.menu-icon svg {
    width: 30px;
    height: 30px;
}

.menu-icon .dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    padding: 0;
    top: 10px !important;
}

.dropdown-menu a {
    color: #353a40;
    font-weight: 600;
    padding: 10px 15px;
}

.dropdown-menu a:not(:last-of-type) {
    border-bottom: 1px solid #e8eef1;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus,
.dropdown-menu a:active {
    color: var(--blue);
    background: none;
}

.logo {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.logo img {
    height: 25px;
}

.filter-icon {
    width: 26px;
}

.header .cross-icon a {
    color: white;
}

.header .cross-icon svg {
    width: 30px;
    height: 30px;
}

.header .back-icon a {
    color: white;
}

.header .back-icon svg {
    width: 30px;
    height: 30px;
}

/* Main content */
.main-content {
    background: #fefefe;
    margin-top: -2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 0;

}

/* Message box */
.message-box {
    border: 2px solid #ced3d7;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
}

.message-box.success {
    border-color: var(--green);
}

.message-box.warning {
    border-color: var(--yellow);
}

.message-box.danger {
    border-color: var(--red);
}

.message-box>img {
    max-width: 70px;
    margin-bottom: 1.5rem;
}

.btn-cross {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    padding: 5px;
    line-height: 0;
    color: var(--lightblue);
}

.message-box.style-2 {
    padding: 0;
}

.message-box.style-2 .top {
    padding: 30px;
    border-bottom: 1px solid #ced6e0;
}

.message-box.style-2 .top h1 {
    font-size: 3rem;
}

.message-box.style-2 .bottom {
    padding: 15px 30px;
}

.message-box.style-2 .bottom p {
    font-size: 14px;
}

.message-box.style-2 .bottom img {
    max-width: 200px;
}


/* Point card */
.point-card {
    border-radius: 10px;
    background-color: white;
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    margin-bottom: 20px;
    position: relative;
    transition: 0.2s;
}

.point-card:hover {
    background-color: #edf1f9;
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
}

.point-card .card-top {
    padding: 0 20px;
    border-bottom: 1px solid #ced6e0;
}

.point-card .card-top .left {
    padding: 20px;
    padding-left: 0;
}

.point-card .card-top .left h4 {
    color: var(--blue);

    margin-right: 5px;
    margin-bottom: 0;
}

.point-card .card-top .left p {
    color: #26292e;
    position: relative;
    top: 3px;
    font-size: 13px;
}

.stars img {
    width: 16px;
}

.stars img:not(:last-of-type) {
    margin-right: 4px;
}

.point-card .card-top .right {
    border-left: 1px solid #ced6e0;
    padding: 20px;
    padding-right: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.point-card .card-top .right p {
    font-size: 12px;
}

.point-card .stars {
    margin-bottom: 5px;
}

.point-card .card-bottom {
    padding: 10px 20px;
}

.point-card .card-bottom .time {
    color: #26292e;
}

.point-card .card-bottom .time svg {
    width: 16px;
    height: 16px;
}

.point-card .card-bottom .time h5 {
    margin-bottom: 0;
    margin-left: 5px;
}

.point-card .card-bottom .left p {
    font-size: 12px;
    margin-left: 5px;
}

.point-card .card-bottom .right {
    line-height: 1;
}

.point-card .card-bottom .arrow-btn {
    line-height: 1;
}


.point-card.style-2 .card-top {
    border: 0;
    padding: 0;
}

.point-card.style-2 .card-top .left {
    border-bottom: 1px solid #ced6e0;
    padding: 10px;
}

.point-card.style-2 .card-top .left h4 {
    font-size: 2rem;
    margin-right: 0;
}

.point-card.style-2 .card-top .left p {
    line-height: 1;
    margin-bottom: 5px;
}

.point-card.style-2 .card-top .right {
    border-bottom: 1px solid #ced6e0;
    border-left: 0;
    padding: 10px;
}

.point-card.style-2 .stars img {
    width: 20px;
}

.point-card.style-2 .stars img:not(:last-of-type) {
    margin-right: 6px;
}

.point-card.style-2 .card-bottom .left {
    position: relative;
    left: 11px;
    flex-grow: 1;
}

.point-card.style-2 .card-bottom .left p {
    margin-left: 0;
    margin-bottom: 3px;
}


.top-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #ced6e0;
}

.top-title p {
    font-size: 14px;
}

/* Servay */
.servay-form {
    margin-top: 20px;
    padding-bottom: 100px;
}

.info svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.info span {
    font-size: 14px;
}

.form-control {
    border-radius: 10px;
    border-color: #ced6e0;
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    font-weight: 600;
    color: #2a2b36;
    padding: .5rem 1rem;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--lightblue);
    opacity: 1;
}

.form-control::-moz-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--lightblue);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--lightblue);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--lightblue);
    opacity: 1;
}

.form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--lightblue);
    opacity: 1;
}

.form-control:focus {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(209, 219, 231, 0.9);
    box-shadow: 0px 10px 30px 0px rgba(209, 219, 231, 0.9);
}

.search-block {
    position: relative;
}

.btn-search {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    padding: 5px;
    line-height: 0;
}

.btn-search svg {
    width: 18px;
    color: var(--lightblue);
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/icon-arrow-down.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-size: 15px;
}

.submit-btn-block {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    text-align: center;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);

}

.submit-btn-block .btn {
    width: 60px;
    height: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    color: white;
}

.submit-btn-block .btn svg {
    width: 24px;
    height: 24px;
}


.custom-checkbox {
    position: relative;
}

.custom-checkbox+.custom-checkbox {
    margin-top: 20px;
}

.custom-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}

.custom-checkbox label {
    color: #2a2b36;
    font-weight: 600;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 1rem;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    border: 2px solid transparent;
    font-size: 14px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.custom-checkbox input:checked~label {
    border-color: var(--blue);
}


/* Statistics */
.icon-statistics {
    color: var(--blue);
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.icon-statistics svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.statistics-cards {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
}

.statistics-card {
    text-align: center;
    background: #f2f5fa;
    border: 2px solid #d0d9e7;
    padding: 20px;
    border-radius: 10px;
}

.statistics-card h1 {
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 1;
}

.statistics-card p {
    font-size: 14px;
    color: #26292e;
    font-weight: 600;
}

.mini-stats-cards {
    margin-top: 30px;
}

.mini-stats-card {
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
}

.mini-stats-card+.mini-stats-card {
    margin-top: 10px;
}

.mini-stats-card p {
    font-size: 14px;
}

.mini-stats-card .btn {
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 10px;
}

.mini-stats-card.yellow {
    border-color: var(--yellow);
}

.mini-stats-card.green {
    border-color: var(--green);
}

.mini-stats-card.red {
    border-color: var(--red);
}

.accordion .card {
    -webkit-box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    box-shadow: 0px 5px 17px 0px rgba(209, 219, 231, 0.7);
    border: 0;
    background: none;
    border-radius: 10px !important;
}


.accordion .card+.card {
    margin-top: 20px;
}

.accordion .card-header {
    border: 0;
    background: none;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
}

.accordion .card-header .btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--blue);
    text-align: left;
    padding: 0;
}

.accordion .card-header .btn svg {
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.accordion .card-header .btn[aria-expanded="true"] svg {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion .card-body {
    padding-top: 0;
    font-size: 14px;
}

.ticket-form .btn {
    padding: 1rem;
}

.ticket-card {
    background: #f2f5fa;
    border-radius: 10px;
    padding: 15px;
}

.ticket-card+.ticket-card {
    margin-top: 10px;
}

.ticket-card p {
    font-size: 14px;
}



/* Profile */
.icon-user {
    color: var(--blue);
    width: 35px;
    height: 35px;
    margin: 0 auto;
}

.icon-user svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.profile-cards {
    border-radius: 10px;
    overflow: hidden;
}

.profile-card {
    background: #f2f5fa;
    padding: 20px;
}

.profile-card:not(:last-of-type) {
    border-bottom: 1px solid #e2e6ed;
}

.profile-card p {
    font-size: 13px;
}

.profile-card h4 {
    margin-bottom: 0;
}

.single4 {
    margin: auto;
    width: 50px;
    margin-top: 40px;
    height: 50px;
    border-radius: 50%;
    border: 6px solid #caa7a7;
    border-top-color: var(--blue);    border-bottom-color: var(--blue);    -webkit-animation: single4 2.5s infinite ease-in-out;
    animation: single4 2.5s infinite ease-in-out;
}

@-webkit-keyframes single4 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(540deg);
		transform: rotate(540deg);
	}
}

@keyframes single4 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(540deg);
		transform: rotate(540deg);
	}
}

/* Rating Star Widgets Style */
.rating-stars ul {
  list-style-type:none;
  padding:0;
  
  -moz-user-select:none;
  -webkit-user-select:none;
}
.rating-stars ul > li.star {
  display:inline-block;
  
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
  font-size:2.5em; /* Change the size of the stars */
  color:#ccc; /* Color on idle state */
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
  color:#FFCC36;

}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
  color:#FF912C;
  stroke:#FF912C;
}

    .isa_info, .isa_success, .isa_warning, .isa_error {
margin: 10px 0px;
padding:12px;
 
}
.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
}
.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.isa_error {
    color: #D8000C;
    background-color: #FFD2D2;
}
.isa_info i, .isa_success i, .isa_warning i, .isa_error i {
    margin:10px 22px;
    font-size:2em;
    vertical-align:middle;
}

