summaryrefslogtreecommitdiff
path: root/src/main/resources/static/css
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static/css')
-rw-r--r--src/main/resources/static/css/animate.css3623
-rw-r--r--src/main/resources/static/css/bootstrap.min.css9273
-rw-r--r--src/main/resources/static/css/flaticon.css33
-rw-r--r--src/main/resources/static/css/font-awesome.min.css4
-rw-r--r--src/main/resources/static/css/gijgo.css2704
-rw-r--r--src/main/resources/static/css/magnific-popup.css351
-rw-r--r--src/main/resources/static/css/nice-select.css140
-rw-r--r--src/main/resources/static/css/owl.carousel.min.css6
-rw-r--r--src/main/resources/static/css/reset.css312
-rw-r--r--src/main/resources/static/css/reset.map16
-rw-r--r--src/main/resources/static/css/slicknav.css251
-rw-r--r--src/main/resources/static/css/style.css6147
-rw-r--r--src/main/resources/static/css/style.map58
-rw-r--r--src/main/resources/static/css/theme-default.css303
-rw-r--r--src/main/resources/static/css/theme-default.map14
-rw-r--r--src/main/resources/static/css/themify-icons.css1081
16 files changed, 24316 insertions, 0 deletions
diff --git a/src/main/resources/static/css/animate.css b/src/main/resources/static/css/animate.css
new file mode 100644
index 0000000..dac48f1
--- /dev/null
+++ b/src/main/resources/static/css/animate.css
@@ -0,0 +1,3623 @@
+@charset "UTF-8";
+
+/*!
+ * animate.css -http://daneden.me/animate
+ * Version - 3.7.0
+ * Licensed under the MIT license - http://opensource.org/licenses/MIT
+ *
+ * Copyright (c) 2018 Daniel Eden
+ */
+
+@-webkit-keyframes bounce {
+ from,
+ 20%,
+ 53%,
+ 80%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 40%,
+ 43% {
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ -webkit-transform: translate3d(0, -30px, 0);
+ transform: translate3d(0, -30px, 0);
+ }
+
+ 70% {
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ -webkit-transform: translate3d(0, -15px, 0);
+ transform: translate3d(0, -15px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, -4px, 0);
+ transform: translate3d(0, -4px, 0);
+ }
+}
+
+@keyframes bounce {
+ from,
+ 20%,
+ 53%,
+ 80%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 40%,
+ 43% {
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ -webkit-transform: translate3d(0, -30px, 0);
+ transform: translate3d(0, -30px, 0);
+ }
+
+ 70% {
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
+ -webkit-transform: translate3d(0, -15px, 0);
+ transform: translate3d(0, -15px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, -4px, 0);
+ transform: translate3d(0, -4px, 0);
+ }
+}
+
+.bounce {
+ -webkit-animation-name: bounce;
+ animation-name: bounce;
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+}
+
+@-webkit-keyframes flash {
+ from,
+ 50%,
+ to {
+ opacity: 1;
+ }
+
+ 25%,
+ 75% {
+ opacity: 0;
+ }
+}
+
+@keyframes flash {
+ from,
+ 50%,
+ to {
+ opacity: 1;
+ }
+
+ 25%,
+ 75% {
+ opacity: 0;
+ }
+}
+
+.flash {
+ -webkit-animation-name: flash;
+ animation-name: flash;
+}
+
+/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
+
+@-webkit-keyframes pulse {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 50% {
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
+ transform: scale3d(1.05, 1.05, 1.05);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes pulse {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 50% {
+ -webkit-transform: scale3d(1.05, 1.05, 1.05);
+ transform: scale3d(1.05, 1.05, 1.05);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+.pulse {
+ -webkit-animation-name: pulse;
+ animation-name: pulse;
+}
+
+@-webkit-keyframes rubberBand {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 30% {
+ -webkit-transform: scale3d(1.25, 0.75, 1);
+ transform: scale3d(1.25, 0.75, 1);
+ }
+
+ 40% {
+ -webkit-transform: scale3d(0.75, 1.25, 1);
+ transform: scale3d(0.75, 1.25, 1);
+ }
+
+ 50% {
+ -webkit-transform: scale3d(1.15, 0.85, 1);
+ transform: scale3d(1.15, 0.85, 1);
+ }
+
+ 65% {
+ -webkit-transform: scale3d(0.95, 1.05, 1);
+ transform: scale3d(0.95, 1.05, 1);
+ }
+
+ 75% {
+ -webkit-transform: scale3d(1.05, 0.95, 1);
+ transform: scale3d(1.05, 0.95, 1);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes rubberBand {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 30% {
+ -webkit-transform: scale3d(1.25, 0.75, 1);
+ transform: scale3d(1.25, 0.75, 1);
+ }
+
+ 40% {
+ -webkit-transform: scale3d(0.75, 1.25, 1);
+ transform: scale3d(0.75, 1.25, 1);
+ }
+
+ 50% {
+ -webkit-transform: scale3d(1.15, 0.85, 1);
+ transform: scale3d(1.15, 0.85, 1);
+ }
+
+ 65% {
+ -webkit-transform: scale3d(0.95, 1.05, 1);
+ transform: scale3d(0.95, 1.05, 1);
+ }
+
+ 75% {
+ -webkit-transform: scale3d(1.05, 0.95, 1);
+ transform: scale3d(1.05, 0.95, 1);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+.rubberBand {
+ -webkit-animation-name: rubberBand;
+ animation-name: rubberBand;
+}
+
+@-webkit-keyframes shake {
+ from,
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 10%,
+ 30%,
+ 50%,
+ 70%,
+ 90% {
+ -webkit-transform: translate3d(-10px, 0, 0);
+ transform: translate3d(-10px, 0, 0);
+ }
+
+ 20%,
+ 40%,
+ 60%,
+ 80% {
+ -webkit-transform: translate3d(10px, 0, 0);
+ transform: translate3d(10px, 0, 0);
+ }
+}
+
+@keyframes shake {
+ from,
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 10%,
+ 30%,
+ 50%,
+ 70%,
+ 90% {
+ -webkit-transform: translate3d(-10px, 0, 0);
+ transform: translate3d(-10px, 0, 0);
+ }
+
+ 20%,
+ 40%,
+ 60%,
+ 80% {
+ -webkit-transform: translate3d(10px, 0, 0);
+ transform: translate3d(10px, 0, 0);
+ }
+}
+
+.shake {
+ -webkit-animation-name: shake;
+ animation-name: shake;
+}
+
+@-webkit-keyframes headShake {
+ 0% {
+ -webkit-transform: translateX(0);
+ transform: translateX(0);
+ }
+
+ 6.5% {
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
+ transform: translateX(-6px) rotateY(-9deg);
+ }
+
+ 18.5% {
+ -webkit-transform: translateX(5px) rotateY(7deg);
+ transform: translateX(5px) rotateY(7deg);
+ }
+
+ 31.5% {
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
+ transform: translateX(-3px) rotateY(-5deg);
+ }
+
+ 43.5% {
+ -webkit-transform: translateX(2px) rotateY(3deg);
+ transform: translateX(2px) rotateY(3deg);
+ }
+
+ 50% {
+ -webkit-transform: translateX(0);
+ transform: translateX(0);
+ }
+}
+
+@keyframes headShake {
+ 0% {
+ -webkit-transform: translateX(0);
+ transform: translateX(0);
+ }
+
+ 6.5% {
+ -webkit-transform: translateX(-6px) rotateY(-9deg);
+ transform: translateX(-6px) rotateY(-9deg);
+ }
+
+ 18.5% {
+ -webkit-transform: translateX(5px) rotateY(7deg);
+ transform: translateX(5px) rotateY(7deg);
+ }
+
+ 31.5% {
+ -webkit-transform: translateX(-3px) rotateY(-5deg);
+ transform: translateX(-3px) rotateY(-5deg);
+ }
+
+ 43.5% {
+ -webkit-transform: translateX(2px) rotateY(3deg);
+ transform: translateX(2px) rotateY(3deg);
+ }
+
+ 50% {
+ -webkit-transform: translateX(0);
+ transform: translateX(0);
+ }
+}
+
+.headShake {
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ -webkit-animation-name: headShake;
+ animation-name: headShake;
+}
+
+@-webkit-keyframes swing {
+ 20% {
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
+ transform: rotate3d(0, 0, 1, 15deg);
+ }
+
+ 40% {
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
+ transform: rotate3d(0, 0, 1, -10deg);
+ }
+
+ 60% {
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
+ transform: rotate3d(0, 0, 1, 5deg);
+ }
+
+ 80% {
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
+ transform: rotate3d(0, 0, 1, -5deg);
+ }
+
+ to {
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
+ transform: rotate3d(0, 0, 1, 0deg);
+ }
+}
+
+@keyframes swing {
+ 20% {
+ -webkit-transform: rotate3d(0, 0, 1, 15deg);
+ transform: rotate3d(0, 0, 1, 15deg);
+ }
+
+ 40% {
+ -webkit-transform: rotate3d(0, 0, 1, -10deg);
+ transform: rotate3d(0, 0, 1, -10deg);
+ }
+
+ 60% {
+ -webkit-transform: rotate3d(0, 0, 1, 5deg);
+ transform: rotate3d(0, 0, 1, 5deg);
+ }
+
+ 80% {
+ -webkit-transform: rotate3d(0, 0, 1, -5deg);
+ transform: rotate3d(0, 0, 1, -5deg);
+ }
+
+ to {
+ -webkit-transform: rotate3d(0, 0, 1, 0deg);
+ transform: rotate3d(0, 0, 1, 0deg);
+ }
+}
+
+.swing {
+ -webkit-transform-origin: top center;
+ transform-origin: top center;
+ -webkit-animation-name: swing;
+ animation-name: swing;
+}
+
+@-webkit-keyframes tada {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 10%,
+ 20% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
+ }
+
+ 30%,
+ 50%,
+ 70%,
+ 90% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
+ }
+
+ 40%,
+ 60%,
+ 80% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes tada {
+ from {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+
+ 10%,
+ 20% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
+ transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
+ }
+
+ 30%,
+ 50%,
+ 70%,
+ 90% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
+ }
+
+ 40%,
+ 60%,
+ 80% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
+ transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
+ }
+
+ to {
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+.tada {
+ -webkit-animation-name: tada;
+ animation-name: tada;
+}
+
+/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
+
+@-webkit-keyframes wobble {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 15% {
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
+ }
+
+ 30% {
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
+ }
+
+ 45% {
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
+ }
+
+ 60% {
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes wobble {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 15% {
+ -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
+ transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
+ }
+
+ 30% {
+ -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
+ transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
+ }
+
+ 45% {
+ -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
+ transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
+ }
+
+ 60% {
+ -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
+ transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
+ transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.wobble {
+ -webkit-animation-name: wobble;
+ animation-name: wobble;
+}
+
+@-webkit-keyframes jello {
+ from,
+ 11.1%,
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 22.2% {
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
+ transform: skewX(-12.5deg) skewY(-12.5deg);
+ }
+
+ 33.3% {
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
+ transform: skewX(6.25deg) skewY(6.25deg);
+ }
+
+ 44.4% {
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
+ transform: skewX(-3.125deg) skewY(-3.125deg);
+ }
+
+ 55.5% {
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
+ transform: skewX(1.5625deg) skewY(1.5625deg);
+ }
+
+ 66.6% {
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
+ }
+
+ 77.7% {
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
+ transform: skewX(0.390625deg) skewY(0.390625deg);
+ }
+
+ 88.8% {
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
+ }
+}
+
+@keyframes jello {
+ from,
+ 11.1%,
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ 22.2% {
+ -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
+ transform: skewX(-12.5deg) skewY(-12.5deg);
+ }
+
+ 33.3% {
+ -webkit-transform: skewX(6.25deg) skewY(6.25deg);
+ transform: skewX(6.25deg) skewY(6.25deg);
+ }
+
+ 44.4% {
+ -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
+ transform: skewX(-3.125deg) skewY(-3.125deg);
+ }
+
+ 55.5% {
+ -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
+ transform: skewX(1.5625deg) skewY(1.5625deg);
+ }
+
+ 66.6% {
+ -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
+ transform: skewX(-0.78125deg) skewY(-0.78125deg);
+ }
+
+ 77.7% {
+ -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
+ transform: skewX(0.390625deg) skewY(0.390625deg);
+ }
+
+ 88.8% {
+ -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
+ transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
+ }
+}
+
+.jello {
+ -webkit-animation-name: jello;
+ animation-name: jello;
+ -webkit-transform-origin: center;
+ transform-origin: center;
+}
+
+@-webkit-keyframes heartBeat {
+ 0% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+
+ 14% {
+ -webkit-transform: scale(1.3);
+ transform: scale(1.3);
+ }
+
+ 28% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+
+ 42% {
+ -webkit-transform: scale(1.3);
+ transform: scale(1.3);
+ }
+
+ 70% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+@keyframes heartBeat {
+ 0% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+
+ 14% {
+ -webkit-transform: scale(1.3);
+ transform: scale(1.3);
+ }
+
+ 28% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+
+ 42% {
+ -webkit-transform: scale(1.3);
+ transform: scale(1.3);
+ }
+
+ 70% {
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+.heartBeat {
+ -webkit-animation-name: heartBeat;
+ animation-name: heartBeat;
+ -webkit-animation-duration: 1.3s;
+ animation-duration: 1.3s;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+}
+
+@-webkit-keyframes bounceIn {
+ from,
+ 20%,
+ 40%,
+ 60%,
+ 80%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ 20% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+
+ 40% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
+ transform: scale3d(0.9, 0.9, 0.9);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+
+ 80% {
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
+ transform: scale3d(0.97, 0.97, 0.97);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+@keyframes bounceIn {
+ from,
+ 20%,
+ 40%,
+ 60%,
+ 80%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ 20% {
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+
+ 40% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
+ transform: scale3d(0.9, 0.9, 0.9);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(1.03, 1.03, 1.03);
+ transform: scale3d(1.03, 1.03, 1.03);
+ }
+
+ 80% {
+ -webkit-transform: scale3d(0.97, 0.97, 0.97);
+ transform: scale3d(0.97, 0.97, 0.97);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+}
+
+.bounceIn {
+ -webkit-animation-duration: 0.75s;
+ animation-duration: 0.75s;
+ -webkit-animation-name: bounceIn;
+ animation-name: bounceIn;
+}
+
+@-webkit-keyframes bounceInDown {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -3000px, 0);
+ transform: translate3d(0, -3000px, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 25px, 0);
+ transform: translate3d(0, 25px, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(0, -10px, 0);
+ transform: translate3d(0, -10px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, 5px, 0);
+ transform: translate3d(0, 5px, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes bounceInDown {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -3000px, 0);
+ transform: translate3d(0, -3000px, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 25px, 0);
+ transform: translate3d(0, 25px, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(0, -10px, 0);
+ transform: translate3d(0, -10px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, 5px, 0);
+ transform: translate3d(0, 5px, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.bounceInDown {
+ -webkit-animation-name: bounceInDown;
+ animation-name: bounceInDown;
+}
+
+@-webkit-keyframes bounceInLeft {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate3d(-3000px, 0, 0);
+ transform: translate3d(-3000px, 0, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(25px, 0, 0);
+ transform: translate3d(25px, 0, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(-10px, 0, 0);
+ transform: translate3d(-10px, 0, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(5px, 0, 0);
+ transform: translate3d(5px, 0, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes bounceInLeft {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ 0% {
+ opacity: 0;
+ -webkit-transform: translate3d(-3000px, 0, 0);
+ transform: translate3d(-3000px, 0, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(25px, 0, 0);
+ transform: translate3d(25px, 0, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(-10px, 0, 0);
+ transform: translate3d(-10px, 0, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(5px, 0, 0);
+ transform: translate3d(5px, 0, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.bounceInLeft {
+ -webkit-animation-name: bounceInLeft;
+ animation-name: bounceInLeft;
+}
+
+@-webkit-keyframes bounceInRight {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(3000px, 0, 0);
+ transform: translate3d(3000px, 0, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(-25px, 0, 0);
+ transform: translate3d(-25px, 0, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(10px, 0, 0);
+ transform: translate3d(10px, 0, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(-5px, 0, 0);
+ transform: translate3d(-5px, 0, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes bounceInRight {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(3000px, 0, 0);
+ transform: translate3d(3000px, 0, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(-25px, 0, 0);
+ transform: translate3d(-25px, 0, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(10px, 0, 0);
+ transform: translate3d(10px, 0, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(-5px, 0, 0);
+ transform: translate3d(-5px, 0, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.bounceInRight {
+ -webkit-animation-name: bounceInRight;
+ animation-name: bounceInRight;
+}
+
+@-webkit-keyframes bounceInUp {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 3000px, 0);
+ transform: translate3d(0, 3000px, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, -20px, 0);
+ transform: translate3d(0, -20px, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(0, 10px, 0);
+ transform: translate3d(0, 10px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, -5px, 0);
+ transform: translate3d(0, -5px, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes bounceInUp {
+ from,
+ 60%,
+ 75%,
+ 90%,
+ to {
+ -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
+ }
+
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 3000px, 0);
+ transform: translate3d(0, 3000px, 0);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, -20px, 0);
+ transform: translate3d(0, -20px, 0);
+ }
+
+ 75% {
+ -webkit-transform: translate3d(0, 10px, 0);
+ transform: translate3d(0, 10px, 0);
+ }
+
+ 90% {
+ -webkit-transform: translate3d(0, -5px, 0);
+ transform: translate3d(0, -5px, 0);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.bounceInUp {
+ -webkit-animation-name: bounceInUp;
+ animation-name: bounceInUp;
+}
+
+@-webkit-keyframes bounceOut {
+ 20% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
+ transform: scale3d(0.9, 0.9, 0.9);
+ }
+
+ 50%,
+ 55% {
+ opacity: 1;
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+}
+
+@keyframes bounceOut {
+ 20% {
+ -webkit-transform: scale3d(0.9, 0.9, 0.9);
+ transform: scale3d(0.9, 0.9, 0.9);
+ }
+
+ 50%,
+ 55% {
+ opacity: 1;
+ -webkit-transform: scale3d(1.1, 1.1, 1.1);
+ transform: scale3d(1.1, 1.1, 1.1);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+}
+
+.bounceOut {
+ -webkit-animation-duration: 0.75s;
+ animation-duration: 0.75s;
+ -webkit-animation-name: bounceOut;
+ animation-name: bounceOut;
+}
+
+@-webkit-keyframes bounceOutDown {
+ 20% {
+ -webkit-transform: translate3d(0, 10px, 0);
+ transform: translate3d(0, 10px, 0);
+ }
+
+ 40%,
+ 45% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, -20px, 0);
+ transform: translate3d(0, -20px, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+}
+
+@keyframes bounceOutDown {
+ 20% {
+ -webkit-transform: translate3d(0, 10px, 0);
+ transform: translate3d(0, 10px, 0);
+ }
+
+ 40%,
+ 45% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, -20px, 0);
+ transform: translate3d(0, -20px, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+}
+
+.bounceOutDown {
+ -webkit-animation-name: bounceOutDown;
+ animation-name: bounceOutDown;
+}
+
+@-webkit-keyframes bounceOutLeft {
+ 20% {
+ opacity: 1;
+ -webkit-transform: translate3d(20px, 0, 0);
+ transform: translate3d(20px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+}
+
+@keyframes bounceOutLeft {
+ 20% {
+ opacity: 1;
+ -webkit-transform: translate3d(20px, 0, 0);
+ transform: translate3d(20px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+}
+
+.bounceOutLeft {
+ -webkit-animation-name: bounceOutLeft;
+ animation-name: bounceOutLeft;
+}
+
+@-webkit-keyframes bounceOutRight {
+ 20% {
+ opacity: 1;
+ -webkit-transform: translate3d(-20px, 0, 0);
+ transform: translate3d(-20px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+}
+
+@keyframes bounceOutRight {
+ 20% {
+ opacity: 1;
+ -webkit-transform: translate3d(-20px, 0, 0);
+ transform: translate3d(-20px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+}
+
+.bounceOutRight {
+ -webkit-animation-name: bounceOutRight;
+ animation-name: bounceOutRight;
+}
+
+@-webkit-keyframes bounceOutUp {
+ 20% {
+ -webkit-transform: translate3d(0, -10px, 0);
+ transform: translate3d(0, -10px, 0);
+ }
+
+ 40%,
+ 45% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 20px, 0);
+ transform: translate3d(0, 20px, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+}
+
+@keyframes bounceOutUp {
+ 20% {
+ -webkit-transform: translate3d(0, -10px, 0);
+ transform: translate3d(0, -10px, 0);
+ }
+
+ 40%,
+ 45% {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 20px, 0);
+ transform: translate3d(0, 20px, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+}
+
+.bounceOutUp {
+ -webkit-animation-name: bounceOutUp;
+ animation-name: bounceOutUp;
+}
+
+@-webkit-keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+
+ to {
+ opacity: 1;
+ }
+}
+
+.fadeIn {
+ -webkit-animation-name: fadeIn;
+ animation-name: fadeIn;
+}
+
+@-webkit-keyframes fadeInDown {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInDown {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInDown {
+ -webkit-animation-name: fadeInDown;
+ animation-name: fadeInDown;
+}
+
+@-webkit-keyframes fadeInDownBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInDownBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInDownBig {
+ -webkit-animation-name: fadeInDownBig;
+ animation-name: fadeInDownBig;
+}
+
+@-webkit-keyframes fadeInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInLeft {
+ -webkit-animation-name: fadeInLeft;
+ animation-name: fadeInLeft;
+}
+
+@-webkit-keyframes fadeInLeftBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInLeftBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInLeftBig {
+ -webkit-animation-name: fadeInLeftBig;
+ animation-name: fadeInLeftBig;
+}
+
+@-webkit-keyframes fadeInRight {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInRight {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInRight {
+ -webkit-animation-name: fadeInRight;
+ animation-name: fadeInRight;
+}
+
+@-webkit-keyframes fadeInRightBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInRightBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInRightBig {
+ -webkit-animation-name: fadeInRightBig;
+ animation-name: fadeInRightBig;
+}
+
+@-webkit-keyframes fadeInUp {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInUp {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInUp {
+ -webkit-animation-name: fadeInUp;
+ animation-name: fadeInUp;
+}
+
+@-webkit-keyframes fadeInUpBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes fadeInUpBig {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.fadeInUpBig {
+ -webkit-animation-name: fadeInUpBig;
+ animation-name: fadeInUpBig;
+}
+
+@-webkit-keyframes fadeOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ }
+}
+
+@keyframes fadeOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ }
+}
+
+.fadeOut {
+ -webkit-animation-name: fadeOut;
+ animation-name: fadeOut;
+}
+
+@-webkit-keyframes fadeOutDown {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+}
+
+@keyframes fadeOutDown {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+}
+
+.fadeOutDown {
+ -webkit-animation-name: fadeOutDown;
+ animation-name: fadeOutDown;
+}
+
+@-webkit-keyframes fadeOutDownBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+}
+
+@keyframes fadeOutDownBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, 2000px, 0);
+ transform: translate3d(0, 2000px, 0);
+ }
+}
+
+.fadeOutDownBig {
+ -webkit-animation-name: fadeOutDownBig;
+ animation-name: fadeOutDownBig;
+}
+
+@-webkit-keyframes fadeOutLeft {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+}
+
+@keyframes fadeOutLeft {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+}
+
+.fadeOutLeft {
+ -webkit-animation-name: fadeOutLeft;
+ animation-name: fadeOutLeft;
+}
+
+@-webkit-keyframes fadeOutLeftBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+}
+
+@keyframes fadeOutLeftBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(-2000px, 0, 0);
+ transform: translate3d(-2000px, 0, 0);
+ }
+}
+
+.fadeOutLeftBig {
+ -webkit-animation-name: fadeOutLeftBig;
+ animation-name: fadeOutLeftBig;
+}
+
+@-webkit-keyframes fadeOutRight {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+}
+
+@keyframes fadeOutRight {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+}
+
+.fadeOutRight {
+ -webkit-animation-name: fadeOutRight;
+ animation-name: fadeOutRight;
+}
+
+@-webkit-keyframes fadeOutRightBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+}
+
+@keyframes fadeOutRightBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(2000px, 0, 0);
+ transform: translate3d(2000px, 0, 0);
+ }
+}
+
+.fadeOutRightBig {
+ -webkit-animation-name: fadeOutRightBig;
+ animation-name: fadeOutRightBig;
+}
+
+@-webkit-keyframes fadeOutUp {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+@keyframes fadeOutUp {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+.fadeOutUp {
+ -webkit-animation-name: fadeOutUp;
+ animation-name: fadeOutUp;
+}
+
+@-webkit-keyframes fadeOutUpBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+}
+
+@keyframes fadeOutUpBig {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(0, -2000px, 0);
+ transform: translate3d(0, -2000px, 0);
+ }
+}
+
+.fadeOutUpBig {
+ -webkit-animation-name: fadeOutUpBig;
+ animation-name: fadeOutUpBig;
+}
+
+@-webkit-keyframes flip {
+ from {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, -360deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
+ -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -190deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -190deg);
+ -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
+ }
+
+ 50% {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -170deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -170deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+}
+
+@keyframes flip {
+ from {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, -360deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
+ -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -190deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -190deg);
+ -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
+ }
+
+ 50% {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -170deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
+ rotate3d(0, 1, 0, -170deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
+ rotate3d(0, 1, 0, 0deg);
+ transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+}
+
+.animated.flip {
+ -webkit-backface-visibility: visible;
+ backface-visibility: visible;
+ -webkit-animation-name: flip;
+ animation-name: flip;
+}
+
+@-webkit-keyframes flipInX {
+ from {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ opacity: 0;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 60% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
+ }
+
+ to {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+}
+
+@keyframes flipInX {
+ from {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ opacity: 0;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 60% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
+ }
+
+ to {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+}
+
+.flipInX {
+ -webkit-backface-visibility: visible !important;
+ backface-visibility: visible !important;
+ -webkit-animation-name: flipInX;
+ animation-name: flipInX;
+}
+
+@-webkit-keyframes flipInY {
+ from {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ opacity: 0;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 60% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
+ }
+
+ to {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+}
+
+@keyframes flipInY {
+ from {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ opacity: 0;
+ }
+
+ 40% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+ }
+
+ 60% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
+ }
+
+ to {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+}
+
+.flipInY {
+ -webkit-backface-visibility: visible !important;
+ backface-visibility: visible !important;
+ -webkit-animation-name: flipInY;
+ animation-name: flipInY;
+}
+
+@-webkit-keyframes flipOutX {
+ from {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+
+ 30% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ opacity: 0;
+ }
+}
+
+@keyframes flipOutX {
+ from {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+
+ 30% {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
+ opacity: 0;
+ }
+}
+
+.flipOutX {
+ -webkit-animation-duration: 0.75s;
+ animation-duration: 0.75s;
+ -webkit-animation-name: flipOutX;
+ animation-name: flipOutX;
+ -webkit-backface-visibility: visible !important;
+ backface-visibility: visible !important;
+}
+
+@-webkit-keyframes flipOutY {
+ from {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+
+ 30% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ opacity: 0;
+ }
+}
+
+@keyframes flipOutY {
+ from {
+ -webkit-transform: perspective(400px);
+ transform: perspective(400px);
+ }
+
+ 30% {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
+ opacity: 0;
+ }
+}
+
+.flipOutY {
+ -webkit-animation-duration: 0.75s;
+ animation-duration: 0.75s;
+ -webkit-backface-visibility: visible !important;
+ backface-visibility: visible !important;
+ -webkit-animation-name: flipOutY;
+ animation-name: flipOutY;
+}
+
+@-webkit-keyframes lightSpeedIn {
+ from {
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
+ opacity: 0;
+ }
+
+ 60% {
+ -webkit-transform: skewX(20deg);
+ transform: skewX(20deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: skewX(-5deg);
+ transform: skewX(-5deg);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes lightSpeedIn {
+ from {
+ -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
+ transform: translate3d(100%, 0, 0) skewX(-30deg);
+ opacity: 0;
+ }
+
+ 60% {
+ -webkit-transform: skewX(20deg);
+ transform: skewX(20deg);
+ opacity: 1;
+ }
+
+ 80% {
+ -webkit-transform: skewX(-5deg);
+ transform: skewX(-5deg);
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.lightSpeedIn {
+ -webkit-animation-name: lightSpeedIn;
+ animation-name: lightSpeedIn;
+ -webkit-animation-timing-function: ease-out;
+ animation-timing-function: ease-out;
+}
+
+@-webkit-keyframes lightSpeedOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
+ transform: translate3d(100%, 0, 0) skewX(30deg);
+ opacity: 0;
+ }
+}
+
+@keyframes lightSpeedOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
+ transform: translate3d(100%, 0, 0) skewX(30deg);
+ opacity: 0;
+ }
+}
+
+.lightSpeedOut {
+ -webkit-animation-name: lightSpeedOut;
+ animation-name: lightSpeedOut;
+ -webkit-animation-timing-function: ease-in;
+ animation-timing-function: ease-in;
+}
+
+@-webkit-keyframes rotateIn {
+ from {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
+ transform: rotate3d(0, 0, 1, -200deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes rotateIn {
+ from {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: rotate3d(0, 0, 1, -200deg);
+ transform: rotate3d(0, 0, 1, -200deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+.rotateIn {
+ -webkit-animation-name: rotateIn;
+ animation-name: rotateIn;
+}
+
+@-webkit-keyframes rotateInDownLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes rotateInDownLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+.rotateInDownLeft {
+ -webkit-animation-name: rotateInDownLeft;
+ animation-name: rotateInDownLeft;
+}
+
+@-webkit-keyframes rotateInDownRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes rotateInDownRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+.rotateInDownRight {
+ -webkit-animation-name: rotateInDownRight;
+ animation-name: rotateInDownRight;
+}
+
+@-webkit-keyframes rotateInUpLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes rotateInUpLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+.rotateInUpLeft {
+ -webkit-animation-name: rotateInUpLeft;
+ animation-name: rotateInUpLeft;
+}
+
+@-webkit-keyframes rotateInUpRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
+ transform: rotate3d(0, 0, 1, -90deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+@keyframes rotateInUpRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
+ transform: rotate3d(0, 0, 1, -90deg);
+ opacity: 0;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ opacity: 1;
+ }
+}
+
+.rotateInUpRight {
+ -webkit-animation-name: rotateInUpRight;
+ animation-name: rotateInUpRight;
+}
+
+@-webkit-keyframes rotateOut {
+ from {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
+ transform: rotate3d(0, 0, 1, 200deg);
+ opacity: 0;
+ }
+}
+
+@keyframes rotateOut {
+ from {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: center;
+ transform-origin: center;
+ -webkit-transform: rotate3d(0, 0, 1, 200deg);
+ transform: rotate3d(0, 0, 1, 200deg);
+ opacity: 0;
+ }
+}
+
+.rotateOut {
+ -webkit-animation-name: rotateOut;
+ animation-name: rotateOut;
+}
+
+@-webkit-keyframes rotateOutDownLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+}
+
+@keyframes rotateOutDownLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 45deg);
+ transform: rotate3d(0, 0, 1, 45deg);
+ opacity: 0;
+ }
+}
+
+.rotateOutDownLeft {
+ -webkit-animation-name: rotateOutDownLeft;
+ animation-name: rotateOutDownLeft;
+}
+
+@-webkit-keyframes rotateOutDownRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+}
+
+@keyframes rotateOutDownRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+}
+
+.rotateOutDownRight {
+ -webkit-animation-name: rotateOutDownRight;
+ animation-name: rotateOutDownRight;
+}
+
+@-webkit-keyframes rotateOutUpLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+}
+
+@keyframes rotateOutUpLeft {
+ from {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: left bottom;
+ transform-origin: left bottom;
+ -webkit-transform: rotate3d(0, 0, 1, -45deg);
+ transform: rotate3d(0, 0, 1, -45deg);
+ opacity: 0;
+ }
+}
+
+.rotateOutUpLeft {
+ -webkit-animation-name: rotateOutUpLeft;
+ animation-name: rotateOutUpLeft;
+}
+
+@-webkit-keyframes rotateOutUpRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
+ transform: rotate3d(0, 0, 1, 90deg);
+ opacity: 0;
+ }
+}
+
+@keyframes rotateOutUpRight {
+ from {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform-origin: right bottom;
+ transform-origin: right bottom;
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
+ transform: rotate3d(0, 0, 1, 90deg);
+ opacity: 0;
+ }
+}
+
+.rotateOutUpRight {
+ -webkit-animation-name: rotateOutUpRight;
+ animation-name: rotateOutUpRight;
+}
+
+@-webkit-keyframes hinge {
+ 0% {
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ }
+
+ 20%,
+ 60% {
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
+ transform: rotate3d(0, 0, 1, 80deg);
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ }
+
+ 40%,
+ 80% {
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
+ transform: rotate3d(0, 0, 1, 60deg);
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 700px, 0);
+ transform: translate3d(0, 700px, 0);
+ opacity: 0;
+ }
+}
+
+@keyframes hinge {
+ 0% {
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ }
+
+ 20%,
+ 60% {
+ -webkit-transform: rotate3d(0, 0, 1, 80deg);
+ transform: rotate3d(0, 0, 1, 80deg);
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ }
+
+ 40%,
+ 80% {
+ -webkit-transform: rotate3d(0, 0, 1, 60deg);
+ transform: rotate3d(0, 0, 1, 60deg);
+ -webkit-transform-origin: top left;
+ transform-origin: top left;
+ -webkit-animation-timing-function: ease-in-out;
+ animation-timing-function: ease-in-out;
+ opacity: 1;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 700px, 0);
+ transform: translate3d(0, 700px, 0);
+ opacity: 0;
+ }
+}
+
+.hinge {
+ -webkit-animation-duration: 2s;
+ animation-duration: 2s;
+ -webkit-animation-name: hinge;
+ animation-name: hinge;
+}
+
+@-webkit-keyframes jackInTheBox {
+ from {
+ opacity: 0;
+ -webkit-transform: scale(0.1) rotate(30deg);
+ transform: scale(0.1) rotate(30deg);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ }
+
+ 50% {
+ -webkit-transform: rotate(-10deg);
+ transform: rotate(-10deg);
+ }
+
+ 70% {
+ -webkit-transform: rotate(3deg);
+ transform: rotate(3deg);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+@keyframes jackInTheBox {
+ from {
+ opacity: 0;
+ -webkit-transform: scale(0.1) rotate(30deg);
+ transform: scale(0.1) rotate(30deg);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ }
+
+ 50% {
+ -webkit-transform: rotate(-10deg);
+ transform: rotate(-10deg);
+ }
+
+ 70% {
+ -webkit-transform: rotate(3deg);
+ transform: rotate(3deg);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: scale(1);
+ transform: scale(1);
+ }
+}
+
+.jackInTheBox {
+ -webkit-animation-name: jackInTheBox;
+ animation-name: jackInTheBox;
+}
+
+/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
+
+@-webkit-keyframes rollIn {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes rollIn {
+ from {
+ opacity: 0;
+ -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
+ transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
+ }
+
+ to {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.rollIn {
+ -webkit-animation-name: rollIn;
+ animation-name: rollIn;
+}
+
+/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
+
+@-webkit-keyframes rollOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
+ }
+}
+
+@keyframes rollOut {
+ from {
+ opacity: 1;
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
+ transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
+ }
+}
+
+.rollOut {
+ -webkit-animation-name: rollOut;
+ animation-name: rollOut;
+}
+
+@-webkit-keyframes zoomIn {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ 50% {
+ opacity: 1;
+ }
+}
+
+@keyframes zoomIn {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ 50% {
+ opacity: 1;
+ }
+}
+
+.zoomIn {
+ -webkit-animation-name: zoomIn;
+ animation-name: zoomIn;
+}
+
+@-webkit-keyframes zoomInDown {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomInDown {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomInDown {
+ -webkit-animation-name: zoomInDown;
+ animation-name: zoomInDown;
+}
+
+@-webkit-keyframes zoomInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomInLeft {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomInLeft {
+ -webkit-animation-name: zoomInLeft;
+ animation-name: zoomInLeft;
+}
+
+@-webkit-keyframes zoomInRight {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomInRight {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomInRight {
+ -webkit-animation-name: zoomInRight;
+ animation-name: zoomInRight;
+}
+
+@-webkit-keyframes zoomInUp {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomInUp {
+ from {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ 60% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomInUp {
+ -webkit-animation-name: zoomInUp;
+ animation-name: zoomInUp;
+}
+
+@-webkit-keyframes zoomOut {
+ from {
+ opacity: 1;
+ }
+
+ 50% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ to {
+ opacity: 0;
+ }
+}
+
+@keyframes zoomOut {
+ from {
+ opacity: 1;
+ }
+
+ 50% {
+ opacity: 0;
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
+ transform: scale3d(0.3, 0.3, 0.3);
+ }
+
+ to {
+ opacity: 0;
+ }
+}
+
+.zoomOut {
+ -webkit-animation-name: zoomOut;
+ animation-name: zoomOut;
+}
+
+@-webkit-keyframes zoomOutDown {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomOutDown {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomOutDown {
+ -webkit-animation-name: zoomOutDown;
+ animation-name: zoomOutDown;
+}
+
+@-webkit-keyframes zoomOutLeft {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
+ -webkit-transform-origin: left center;
+ transform-origin: left center;
+ }
+}
+
+@keyframes zoomOutLeft {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
+ transform: scale(0.1) translate3d(-2000px, 0, 0);
+ -webkit-transform-origin: left center;
+ transform-origin: left center;
+ }
+}
+
+.zoomOutLeft {
+ -webkit-animation-name: zoomOutLeft;
+ animation-name: zoomOutLeft;
+}
+
+@-webkit-keyframes zoomOutRight {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
+ transform: scale(0.1) translate3d(2000px, 0, 0);
+ -webkit-transform-origin: right center;
+ transform-origin: right center;
+ }
+}
+
+@keyframes zoomOutRight {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
+ transform: scale(0.1) translate3d(2000px, 0, 0);
+ -webkit-transform-origin: right center;
+ transform-origin: right center;
+ }
+}
+
+.zoomOutRight {
+ -webkit-animation-name: zoomOutRight;
+ animation-name: zoomOutRight;
+}
+
+@-webkit-keyframes zoomOutUp {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+@keyframes zoomOutUp {
+ 40% {
+ opacity: 1;
+ -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
+ -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
+ }
+
+ to {
+ opacity: 0;
+ -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
+ transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
+ -webkit-transform-origin: center bottom;
+ transform-origin: center bottom;
+ -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
+ }
+}
+
+.zoomOutUp {
+ -webkit-animation-name: zoomOutUp;
+ animation-name: zoomOutUp;
+}
+
+@-webkit-keyframes slideInDown {
+ from {
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes slideInDown {
+ from {
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.slideInDown {
+ -webkit-animation-name: slideInDown;
+ animation-name: slideInDown;
+}
+
+@-webkit-keyframes slideInLeft {
+ from {
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes slideInLeft {
+ from {
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.slideInLeft {
+ -webkit-animation-name: slideInLeft;
+ animation-name: slideInLeft;
+}
+
+@-webkit-keyframes slideInRight {
+ from {
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes slideInRight {
+ from {
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.slideInRight {
+ -webkit-animation-name: slideInRight;
+ animation-name: slideInRight;
+}
+
+@-webkit-keyframes slideInUp {
+ from {
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+@keyframes slideInUp {
+ from {
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ visibility: visible;
+ }
+
+ to {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+}
+
+.slideInUp {
+ -webkit-animation-name: slideInUp;
+ animation-name: slideInUp;
+}
+
+@-webkit-keyframes slideOutDown {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+}
+
+@keyframes slideOutDown {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, 100%, 0);
+ transform: translate3d(0, 100%, 0);
+ }
+}
+
+.slideOutDown {
+ -webkit-animation-name: slideOutDown;
+ animation-name: slideOutDown;
+}
+
+@-webkit-keyframes slideOutLeft {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+}
+
+@keyframes slideOutLeft {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0);
+ }
+}
+
+.slideOutLeft {
+ -webkit-animation-name: slideOutLeft;
+ animation-name: slideOutLeft;
+}
+
+@-webkit-keyframes slideOutRight {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+}
+
+@keyframes slideOutRight {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0);
+ }
+}
+
+.slideOutRight {
+ -webkit-animation-name: slideOutRight;
+ animation-name: slideOutRight;
+}
+
+@-webkit-keyframes slideOutUp {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+@keyframes slideOutUp {
+ from {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+
+ to {
+ visibility: hidden;
+ -webkit-transform: translate3d(0, -100%, 0);
+ transform: translate3d(0, -100%, 0);
+ }
+}
+
+.slideOutUp {
+ -webkit-animation-name: slideOutUp;
+ animation-name: slideOutUp;
+}
+
+.animated {
+ -webkit-animation-duration: 1s;
+ animation-duration: 1s;
+ -webkit-animation-fill-mode: both;
+ animation-fill-mode: both;
+}
+
+.animated.infinite {
+ -webkit-animation-iteration-count: infinite;
+ animation-iteration-count: infinite;
+}
+
+.animated.delay-1s {
+ -webkit-animation-delay: 1s;
+ animation-delay: 1s;
+}
+
+.animated.delay-2s {
+ -webkit-animation-delay: 2s;
+ animation-delay: 2s;
+}
+
+.animated.delay-3s {
+ -webkit-animation-delay: 3s;
+ animation-delay: 3s;
+}
+
+.animated.delay-4s {
+ -webkit-animation-delay: 4s;
+ animation-delay: 4s;
+}
+
+.animated.delay-5s {
+ -webkit-animation-delay: 5s;
+ animation-delay: 5s;
+}
+
+.animated.fast {
+ -webkit-animation-duration: 800ms;
+ animation-duration: 800ms;
+}
+
+.animated.faster {
+ -webkit-animation-duration: 500ms;
+ animation-duration: 500ms;
+}
+
+.animated.slow {
+ -webkit-animation-duration: 2s;
+ animation-duration: 2s;
+}
+
+.animated.slower {
+ -webkit-animation-duration: 3s;
+ animation-duration: 3s;
+}
+
+@media (print), (prefers-reduced-motion) {
+ .animated {
+ -webkit-animation: unset !important;
+ animation: unset !important;
+ -webkit-transition: none !important;
+ transition: none !important;
+ }
+}
diff --git a/src/main/resources/static/css/bootstrap.min.css b/src/main/resources/static/css/bootstrap.min.css
new file mode 100644
index 0000000..cc0ab5e
--- /dev/null
+++ b/src/main/resources/static/css/bootstrap.min.css
@@ -0,0 +1,9273 @@
+/*!
+ * Bootstrap v4.0.0 (https://getbootstrap.com)
+ * Copyright 2011-2018 The Bootstrap Authors
+ * Copyright 2011-2018 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+:root {
+ --blue: #007bff;
+ --indigo: #6610f2;
+ --purple: #6f42c1;
+ --pink: #e83e8c;
+ --red: #dc3545;
+ --orange: #fd7e14;
+ --yellow: #ffc107;
+ --green: #28a745;
+ --teal: #20c997;
+ --cyan: #17a2b8;
+ --white: #fff;
+ --gray: #6c757d;
+ --gray-dark: #343a40;
+ --primary: #007bff;
+ --secondary: #6c757d;
+ --success: #28a745;
+ --info: #17a2b8;
+ --warning: #ffc107;
+ --danger: #dc3545;
+ --light: #f8f9fa;
+ --dark: #343a40;
+ --breakpoint-xs: 0;
+ --breakpoint-sm: 576px;
+ --breakpoint-md: 768px;
+ --breakpoint-lg: 992px;
+ --breakpoint-xl: 1200px;
+ --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
+}
+
+*,
+::after,
+::before {
+ box-sizing: border-box
+}
+
+html {
+ font-family: sans-serif;
+ line-height: 1.15;
+ -webkit-text-size-adjust: 100%;
+ -ms-text-size-adjust: 100%;
+ -ms-overflow-style: scrollbar;
+ -webkit-tap-highlight-color: transparent
+}
+
+@-ms-viewport {
+ width: device-width
+}
+
+article,
+aside,
+dialog,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+nav,
+section {
+ display: block
+}
+
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #212529;
+ text-align: left;
+ background-color: #fff
+}
+
+[tabindex="-1"]:focus {
+ outline: 0!important
+}
+
+hr {
+ box-sizing: content-box;
+ height: 0;
+ overflow: visible
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ margin-top: 0;
+ margin-bottom: .5rem
+}
+
+p {
+ margin-top: 0;
+ margin-bottom: 1rem
+}
+
+abbr[data-original-title],
+abbr[title] {
+ text-decoration: underline;
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+ cursor: help;
+ border-bottom: 0
+}
+
+address {
+ margin-bottom: 1rem;
+ font-style: normal;
+ line-height: inherit
+}
+
+dl,
+ol,
+ul {
+ margin-top: 0;
+ margin-bottom: 1rem
+}
+
+ol ol,
+ol ul,
+ul ol,
+ul ul {
+ margin-bottom: 0
+}
+
+dt {
+ font-weight: 700
+}
+
+dd {
+ margin-bottom: .5rem;
+ margin-left: 0
+}
+
+blockquote {
+ margin: 0 0 1rem
+}
+
+dfn {
+ font-style: italic
+}
+
+b,
+strong {
+ font-weight: bolder
+}
+
+small {
+ font-size: 80%
+}
+
+sub,
+sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ vertical-align: baseline
+}
+
+sub {
+ bottom: -.25em
+}
+
+sup {
+ top: -.5em
+}
+
+a {
+ color: #007bff;
+ text-decoration: none;
+ background-color: transparent;
+ -webkit-text-decoration-skip: objects
+}
+
+a:hover {
+ color: #0056b3;
+ text-decoration: underline
+}
+
+a:not([href]):not([tabindex]) {
+ color: inherit;
+ text-decoration: none
+}
+
+a:not([href]):not([tabindex]):focus,
+a:not([href]):not([tabindex]):hover {
+ color: inherit;
+ text-decoration: none
+}
+
+a:not([href]):not([tabindex]):focus {
+ outline: 0
+}
+
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, monospace;
+ font-size: 1em
+}
+
+pre {
+ margin-top: 0;
+ margin-bottom: 1rem;
+ overflow: auto;
+ -ms-overflow-style: scrollbar
+}
+
+figure {
+ margin: 0 0 1rem
+}
+
+img {
+ vertical-align: middle;
+ border-style: none
+}
+
+svg:not(:root) {
+ overflow: hidden
+}
+
+table {
+ border-collapse: collapse
+}
+
+caption {
+ padding-top: .75rem;
+ padding-bottom: .75rem;
+ color: #6c757d;
+ text-align: left;
+ caption-side: bottom
+}
+
+th {
+ text-align: inherit
+}
+
+label {
+ display: inline-block;
+ margin-bottom: .5rem
+}
+
+button {
+ border-radius: 0
+}
+
+button:focus {
+ outline: 1px dotted;
+ outline: 5px auto -webkit-focus-ring-color
+}
+
+button,
+input,
+optgroup,
+select,
+textarea {
+ margin: 0;
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit
+}
+
+button,
+input {
+ overflow: visible
+}
+
+button,
+select {
+ text-transform: none
+}
+
+[type=reset],
+[type=submit],
+button,
+html [type=button] {
+ -webkit-appearance: button
+}
+
+[type=button]::-moz-focus-inner,
+[type=reset]::-moz-focus-inner,
+[type=submit]::-moz-focus-inner,
+button::-moz-focus-inner {
+ padding: 0;
+ border-style: none
+}
+
+input[type=checkbox],
+input[type=radio] {
+ box-sizing: border-box;
+ padding: 0
+}
+
+input[type=date],
+input[type=datetime-local],
+input[type=month],
+input[type=time] {
+ -webkit-appearance: listbox
+}
+
+textarea {
+ overflow: auto;
+ resize: vertical
+}
+
+fieldset {
+ min-width: 0;
+ padding: 0;
+ margin: 0;
+ border: 0
+}
+
+legend {
+ display: block;
+ width: 100%;
+ max-width: 100%;
+ padding: 0;
+ margin-bottom: .5rem;
+ font-size: 1.5rem;
+ line-height: inherit;
+ color: inherit;
+ white-space: normal
+}
+
+progress {
+ vertical-align: baseline
+}
+
+[type=number]::-webkit-inner-spin-button,
+[type=number]::-webkit-outer-spin-button {
+ height: auto
+}
+
+[type=search] {
+ outline-offset: -2px;
+ -webkit-appearance: none
+}
+
+[type=search]::-webkit-search-cancel-button,
+[type=search]::-webkit-search-decoration {
+ -webkit-appearance: none
+}
+
+::-webkit-file-upload-button {
+ font: inherit;
+ -webkit-appearance: button
+}
+
+output {
+ display: inline-block
+}
+
+summary {
+ display: list-item;
+ cursor: pointer
+}
+
+template {
+ display: none
+}
+
+[hidden] {
+ display: none!important
+}
+
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6,
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ margin-bottom: .5rem;
+ font-family: inherit;
+ font-weight: 500;
+ line-height: 1.2;
+ color: inherit
+}
+
+.h1,
+h1 {
+ font-size: 2.5rem
+}
+
+.h2,
+h2 {
+ font-size: 2rem
+}
+
+.h3,
+h3 {
+ font-size: 1.75rem
+}
+
+.h4,
+h4 {
+ font-size: 1.5rem
+}
+
+.h5,
+h5 {
+ font-size: 1.25rem
+}
+
+.h6,
+h6 {
+ font-size: 1rem
+}
+
+.lead {
+ font-size: 1.25rem;
+ font-weight: 300
+}
+
+.display-1 {
+ font-size: 6rem;
+ font-weight: 300;
+ line-height: 1.2
+}
+
+.display-2 {
+ font-size: 5.5rem;
+ font-weight: 300;
+ line-height: 1.2
+}
+
+.display-3 {
+ font-size: 4.5rem;
+ font-weight: 300;
+ line-height: 1.2
+}
+
+.display-4 {
+ font-size: 3.5rem;
+ font-weight: 300;
+ line-height: 1.2
+}
+
+hr {
+ margin-top: 1rem;
+ margin-bottom: 1rem;
+ border: 0;
+ border-top: 1px solid rgba(0, 0, 0, .1)
+}
+
+.small,
+small {
+ font-size: 80%;
+ font-weight: 400
+}
+
+.mark,
+mark {
+ padding: .2em;
+ background-color: #fcf8e3
+}
+
+.list-unstyled {
+ padding-left: 0;
+ list-style: none
+}
+
+.list-inline {
+ padding-left: 0;
+ list-style: none
+}
+
+.list-inline-item {
+ display: inline-block
+}
+
+.list-inline-item:not(:last-child) {
+ margin-right: .5rem
+}
+
+.initialism {
+ font-size: 90%;
+ text-transform: uppercase
+}
+
+.blockquote {
+ margin-bottom: 1rem;
+ font-size: 1.25rem
+}
+
+.blockquote-footer {
+ display: block;
+ font-size: 80%;
+ color: #6c757d
+}
+
+.blockquote-footer::before {
+ content: "\2014 \00A0"
+}
+
+.img-fluid {
+ max-width: 100%;
+ height: auto
+}
+
+.img-thumbnail {
+ padding: .25rem;
+ background-color: #fff;
+ border: 1px solid #dee2e6;
+ border-radius: .25rem;
+ max-width: 100%;
+ height: auto
+}
+
+.figure {
+ display: inline-block
+}
+
+.figure-img {
+ margin-bottom: .5rem;
+ line-height: 1
+}
+
+.figure-caption {
+ font-size: 90%;
+ color: #6c757d
+}
+
+code,
+kbd,
+pre,
+samp {
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
+}
+
+code {
+ font-size: 87.5%;
+ color: #e83e8c;
+ word-break: break-word
+}
+
+a>code {
+ color: inherit
+}
+
+kbd {
+ padding: .2rem .4rem;
+ font-size: 87.5%;
+ color: #fff;
+ background-color: #212529;
+ border-radius: .2rem
+}
+
+kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: 700
+}
+
+pre {
+ display: block;
+ font-size: 87.5%;
+ color: #212529
+}
+
+pre code {
+ font-size: inherit;
+ color: inherit;
+ word-break: normal
+}
+
+.pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll
+}
+
+.container {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto
+}
+
+@media (min-width:576px) {
+ .container {
+ max-width: 540px
+ }
+}
+
+@media (min-width:768px) {
+ .container {
+ max-width: 720px
+ }
+}
+
+@media (min-width:992px) {
+ .container {
+ max-width: 960px
+ }
+}
+
+@media (min-width:1200px) {
+ .container {
+ max-width: 1140px
+ }
+}
+
+.container-fluid {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto
+}
+
+.row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -15px;
+ margin-left: -15px
+}
+
+.no-gutters {
+ margin-right: 0;
+ margin-left: 0
+}
+
+.no-gutters>.col,
+.no-gutters>[class*=col-] {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.col,
+.col-1,
+.col-10,
+.col-11,
+.col-12,
+.col-2,
+.col-3,
+.col-4,
+.col-5,
+.col-6,
+.col-7,
+.col-8,
+.col-9,
+.col-auto,
+.col-lg,
+.col-lg-1,
+.col-lg-10,
+.col-lg-11,
+.col-lg-12,
+.col-lg-2,
+.col-lg-3,
+.col-lg-4,
+.col-lg-5,
+.col-lg-6,
+.col-lg-7,
+.col-lg-8,
+.col-lg-9,
+.col-lg-auto,
+.col-md,
+.col-md-1,
+.col-md-10,
+.col-md-11,
+.col-md-12,
+.col-md-2,
+.col-md-3,
+.col-md-4,
+.col-md-5,
+.col-md-6,
+.col-md-7,
+.col-md-8,
+.col-md-9,
+.col-md-auto,
+.col-sm,
+.col-sm-1,
+.col-sm-10,
+.col-sm-11,
+.col-sm-12,
+.col-sm-2,
+.col-sm-3,
+.col-sm-4,
+.col-sm-5,
+.col-sm-6,
+.col-sm-7,
+.col-sm-8,
+.col-sm-9,
+.col-sm-auto,
+.col-xl,
+.col-xl-1,
+.col-xl-10,
+.col-xl-11,
+.col-xl-12,
+.col-xl-2,
+.col-xl-3,
+.col-xl-4,
+.col-xl-5,
+.col-xl-6,
+.col-xl-7,
+.col-xl-8,
+.col-xl-9,
+.col-xl-auto {
+ position: relative;
+ width: 100%;
+ min-height: 1px;
+ padding-right: 15px;
+ padding-left: 15px
+}
+
+.col {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%
+}
+
+.col-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: none
+}
+
+.col-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.333333%;
+ flex: 0 0 8.333333%;
+ max-width: 8.333333%
+}
+
+.col-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.666667%;
+ flex: 0 0 16.666667%;
+ max-width: 16.666667%
+}
+
+.col-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%
+}
+
+.col-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.333333%;
+ flex: 0 0 33.333333%;
+ max-width: 33.333333%
+}
+
+.col-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.666667%;
+ flex: 0 0 41.666667%;
+ max-width: 41.666667%
+}
+
+.col-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%
+}
+
+.col-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.333333%;
+ flex: 0 0 58.333333%;
+ max-width: 58.333333%
+}
+
+.col-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.666667%;
+ flex: 0 0 66.666667%;
+ max-width: 66.666667%
+}
+
+.col-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%
+}
+
+.col-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.333333%;
+ flex: 0 0 83.333333%;
+ max-width: 83.333333%
+}
+
+.col-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.666667%;
+ flex: 0 0 91.666667%;
+ max-width: 91.666667%
+}
+
+.col-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%
+}
+
+.order-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1
+}
+
+.order-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13
+}
+
+.order-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0
+}
+
+.order-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1
+}
+
+.order-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2
+}
+
+.order-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3
+}
+
+.order-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4
+}
+
+.order-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5
+}
+
+.order-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6
+}
+
+.order-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7
+}
+
+.order-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8
+}
+
+.order-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9
+}
+
+.order-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10
+}
+
+.order-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11
+}
+
+.order-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12
+}
+
+.offset-1 {
+ margin-left: 8.333333%
+}
+
+.offset-2 {
+ margin-left: 16.666667%
+}
+
+.offset-3 {
+ margin-left: 25%
+}
+
+.offset-4 {
+ margin-left: 33.333333%
+}
+
+.offset-5 {
+ margin-left: 41.666667%
+}
+
+.offset-6 {
+ margin-left: 50%
+}
+
+.offset-7 {
+ margin-left: 58.333333%
+}
+
+.offset-8 {
+ margin-left: 66.666667%
+}
+
+.offset-9 {
+ margin-left: 75%
+}
+
+.offset-10 {
+ margin-left: 83.333333%
+}
+
+.offset-11 {
+ margin-left: 91.666667%
+}
+
+@media (min-width:576px) {
+ .col-sm {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%
+ }
+ .col-sm-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: none
+ }
+ .col-sm-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.333333%;
+ flex: 0 0 8.333333%;
+ max-width: 8.333333%
+ }
+ .col-sm-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.666667%;
+ flex: 0 0 16.666667%;
+ max-width: 16.666667%
+ }
+ .col-sm-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .col-sm-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.333333%;
+ flex: 0 0 33.333333%;
+ max-width: 33.333333%
+ }
+ .col-sm-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.666667%;
+ flex: 0 0 41.666667%;
+ max-width: 41.666667%
+ }
+ .col-sm-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .col-sm-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.333333%;
+ flex: 0 0 58.333333%;
+ max-width: 58.333333%
+ }
+ .col-sm-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.666667%;
+ flex: 0 0 66.666667%;
+ max-width: 66.666667%
+ }
+ .col-sm-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .col-sm-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.333333%;
+ flex: 0 0 83.333333%;
+ max-width: 83.333333%
+ }
+ .col-sm-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.666667%;
+ flex: 0 0 91.666667%;
+ max-width: 91.666667%
+ }
+ .col-sm-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+ .order-sm-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1
+ }
+ .order-sm-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13
+ }
+ .order-sm-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0
+ }
+ .order-sm-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1
+ }
+ .order-sm-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2
+ }
+ .order-sm-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3
+ }
+ .order-sm-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4
+ }
+ .order-sm-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5
+ }
+ .order-sm-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6
+ }
+ .order-sm-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7
+ }
+ .order-sm-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8
+ }
+ .order-sm-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9
+ }
+ .order-sm-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10
+ }
+ .order-sm-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11
+ }
+ .order-sm-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12
+ }
+ .offset-sm-0 {
+ margin-left: 0
+ }
+ .offset-sm-1 {
+ margin-left: 8.333333%
+ }
+ .offset-sm-2 {
+ margin-left: 16.666667%
+ }
+ .offset-sm-3 {
+ margin-left: 25%
+ }
+ .offset-sm-4 {
+ margin-left: 33.333333%
+ }
+ .offset-sm-5 {
+ margin-left: 41.666667%
+ }
+ .offset-sm-6 {
+ margin-left: 50%
+ }
+ .offset-sm-7 {
+ margin-left: 58.333333%
+ }
+ .offset-sm-8 {
+ margin-left: 66.666667%
+ }
+ .offset-sm-9 {
+ margin-left: 75%
+ }
+ .offset-sm-10 {
+ margin-left: 83.333333%
+ }
+ .offset-sm-11 {
+ margin-left: 91.666667%
+ }
+}
+
+@media (min-width:768px) {
+ .col-md {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%
+ }
+ .col-md-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: none
+ }
+ .col-md-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.333333%;
+ flex: 0 0 8.333333%;
+ max-width: 8.333333%
+ }
+ .col-md-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.666667%;
+ flex: 0 0 16.666667%;
+ max-width: 16.666667%
+ }
+ .col-md-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .col-md-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.333333%;
+ flex: 0 0 33.333333%;
+ max-width: 33.333333%
+ }
+ .col-md-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.666667%;
+ flex: 0 0 41.666667%;
+ max-width: 41.666667%
+ }
+ .col-md-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .col-md-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.333333%;
+ flex: 0 0 58.333333%;
+ max-width: 58.333333%
+ }
+ .col-md-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.666667%;
+ flex: 0 0 66.666667%;
+ max-width: 66.666667%
+ }
+ .col-md-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .col-md-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.333333%;
+ flex: 0 0 83.333333%;
+ max-width: 83.333333%
+ }
+ .col-md-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.666667%;
+ flex: 0 0 91.666667%;
+ max-width: 91.666667%
+ }
+ .col-md-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+ .order-md-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1
+ }
+ .order-md-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13
+ }
+ .order-md-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0
+ }
+ .order-md-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1
+ }
+ .order-md-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2
+ }
+ .order-md-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3
+ }
+ .order-md-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4
+ }
+ .order-md-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5
+ }
+ .order-md-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6
+ }
+ .order-md-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7
+ }
+ .order-md-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8
+ }
+ .order-md-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9
+ }
+ .order-md-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10
+ }
+ .order-md-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11
+ }
+ .order-md-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12
+ }
+ .offset-md-0 {
+ margin-left: 0
+ }
+ .offset-md-1 {
+ margin-left: 8.333333%
+ }
+ .offset-md-2 {
+ margin-left: 16.666667%
+ }
+ .offset-md-3 {
+ margin-left: 25%
+ }
+ .offset-md-4 {
+ margin-left: 33.333333%
+ }
+ .offset-md-5 {
+ margin-left: 41.666667%
+ }
+ .offset-md-6 {
+ margin-left: 50%
+ }
+ .offset-md-7 {
+ margin-left: 58.333333%
+ }
+ .offset-md-8 {
+ margin-left: 66.666667%
+ }
+ .offset-md-9 {
+ margin-left: 75%
+ }
+ .offset-md-10 {
+ margin-left: 83.333333%
+ }
+ .offset-md-11 {
+ margin-left: 91.666667%
+ }
+}
+
+@media (min-width:992px) {
+ .col-lg {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%
+ }
+ .col-lg-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: none
+ }
+ .col-lg-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.333333%;
+ flex: 0 0 8.333333%;
+ max-width: 8.333333%
+ }
+ .col-lg-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.666667%;
+ flex: 0 0 16.666667%;
+ max-width: 16.666667%
+ }
+ .col-lg-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .col-lg-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.333333%;
+ flex: 0 0 33.333333%;
+ max-width: 33.333333%
+ }
+ .col-lg-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.666667%;
+ flex: 0 0 41.666667%;
+ max-width: 41.666667%
+ }
+ .col-lg-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .col-lg-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.333333%;
+ flex: 0 0 58.333333%;
+ max-width: 58.333333%
+ }
+ .col-lg-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.666667%;
+ flex: 0 0 66.666667%;
+ max-width: 66.666667%
+ }
+ .col-lg-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .col-lg-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.333333%;
+ flex: 0 0 83.333333%;
+ max-width: 83.333333%
+ }
+ .col-lg-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.666667%;
+ flex: 0 0 91.666667%;
+ max-width: 91.666667%
+ }
+ .col-lg-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+ .order-lg-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1
+ }
+ .order-lg-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13
+ }
+ .order-lg-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0
+ }
+ .order-lg-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1
+ }
+ .order-lg-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2
+ }
+ .order-lg-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3
+ }
+ .order-lg-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4
+ }
+ .order-lg-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5
+ }
+ .order-lg-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6
+ }
+ .order-lg-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7
+ }
+ .order-lg-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8
+ }
+ .order-lg-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9
+ }
+ .order-lg-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10
+ }
+ .order-lg-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11
+ }
+ .order-lg-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12
+ }
+ .offset-lg-0 {
+ margin-left: 0
+ }
+ .offset-lg-1 {
+ margin-left: 8.333333%
+ }
+ .offset-lg-2 {
+ margin-left: 16.666667%
+ }
+ .offset-lg-3 {
+ margin-left: 25%
+ }
+ .offset-lg-4 {
+ margin-left: 33.333333%
+ }
+ .offset-lg-5 {
+ margin-left: 41.666667%
+ }
+ .offset-lg-6 {
+ margin-left: 50%
+ }
+ .offset-lg-7 {
+ margin-left: 58.333333%
+ }
+ .offset-lg-8 {
+ margin-left: 66.666667%
+ }
+ .offset-lg-9 {
+ margin-left: 75%
+ }
+ .offset-lg-10 {
+ margin-left: 83.333333%
+ }
+ .offset-lg-11 {
+ margin-left: 91.666667%
+ }
+}
+
+@media (min-width:1200px) {
+ .col-xl {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%
+ }
+ .col-xl-auto {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: none
+ }
+ .col-xl-1 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 8.333333%;
+ flex: 0 0 8.333333%;
+ max-width: 8.333333%
+ }
+ .col-xl-2 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 16.666667%;
+ flex: 0 0 16.666667%;
+ max-width: 16.666667%
+ }
+ .col-xl-3 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%
+ }
+ .col-xl-4 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 33.333333%;
+ flex: 0 0 33.333333%;
+ max-width: 33.333333%
+ }
+ .col-xl-5 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 41.666667%;
+ flex: 0 0 41.666667%;
+ max-width: 41.666667%
+ }
+ .col-xl-6 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%
+ }
+ .col-xl-7 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 58.333333%;
+ flex: 0 0 58.333333%;
+ max-width: 58.333333%
+ }
+ .col-xl-8 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 66.666667%;
+ flex: 0 0 66.666667%;
+ max-width: 66.666667%
+ }
+ .col-xl-9 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%
+ }
+ .col-xl-10 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 83.333333%;
+ flex: 0 0 83.333333%;
+ max-width: 83.333333%
+ }
+ .col-xl-11 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 91.666667%;
+ flex: 0 0 91.666667%;
+ max-width: 91.666667%
+ }
+ .col-xl-12 {
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%
+ }
+ .order-xl-first {
+ -webkit-box-ordinal-group: 0;
+ -ms-flex-order: -1;
+ order: -1
+ }
+ .order-xl-last {
+ -webkit-box-ordinal-group: 14;
+ -ms-flex-order: 13;
+ order: 13
+ }
+ .order-xl-0 {
+ -webkit-box-ordinal-group: 1;
+ -ms-flex-order: 0;
+ order: 0
+ }
+ .order-xl-1 {
+ -webkit-box-ordinal-group: 2;
+ -ms-flex-order: 1;
+ order: 1
+ }
+ .order-xl-2 {
+ -webkit-box-ordinal-group: 3;
+ -ms-flex-order: 2;
+ order: 2
+ }
+ .order-xl-3 {
+ -webkit-box-ordinal-group: 4;
+ -ms-flex-order: 3;
+ order: 3
+ }
+ .order-xl-4 {
+ -webkit-box-ordinal-group: 5;
+ -ms-flex-order: 4;
+ order: 4
+ }
+ .order-xl-5 {
+ -webkit-box-ordinal-group: 6;
+ -ms-flex-order: 5;
+ order: 5
+ }
+ .order-xl-6 {
+ -webkit-box-ordinal-group: 7;
+ -ms-flex-order: 6;
+ order: 6
+ }
+ .order-xl-7 {
+ -webkit-box-ordinal-group: 8;
+ -ms-flex-order: 7;
+ order: 7
+ }
+ .order-xl-8 {
+ -webkit-box-ordinal-group: 9;
+ -ms-flex-order: 8;
+ order: 8
+ }
+ .order-xl-9 {
+ -webkit-box-ordinal-group: 10;
+ -ms-flex-order: 9;
+ order: 9
+ }
+ .order-xl-10 {
+ -webkit-box-ordinal-group: 11;
+ -ms-flex-order: 10;
+ order: 10
+ }
+ .order-xl-11 {
+ -webkit-box-ordinal-group: 12;
+ -ms-flex-order: 11;
+ order: 11
+ }
+ .order-xl-12 {
+ -webkit-box-ordinal-group: 13;
+ -ms-flex-order: 12;
+ order: 12
+ }
+ .offset-xl-0 {
+ margin-left: 0
+ }
+ .offset-xl-1 {
+ margin-left: 8.333333%
+ }
+ .offset-xl-2 {
+ margin-left: 16.666667%
+ }
+ .offset-xl-3 {
+ margin-left: 25%
+ }
+ .offset-xl-4 {
+ margin-left: 33.333333%
+ }
+ .offset-xl-5 {
+ margin-left: 41.666667%
+ }
+ .offset-xl-6 {
+ margin-left: 50%
+ }
+ .offset-xl-7 {
+ margin-left: 58.333333%
+ }
+ .offset-xl-8 {
+ margin-left: 66.666667%
+ }
+ .offset-xl-9 {
+ margin-left: 75%
+ }
+ .offset-xl-10 {
+ margin-left: 83.333333%
+ }
+ .offset-xl-11 {
+ margin-left: 91.666667%
+ }
+}
+
+.table {
+ width: 100%;
+ max-width: 100%;
+ margin-bottom: 1rem;
+ background-color: transparent
+}
+
+.table td,
+.table th {
+ padding: .75rem;
+ vertical-align: top;
+ border-top: 1px solid #dee2e6
+}
+
+.table thead th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #dee2e6
+}
+
+.table tbody+tbody {
+ border-top: 2px solid #dee2e6
+}
+
+.table .table {
+ background-color: #fff
+}
+
+.table-sm td,
+.table-sm th {
+ padding: .3rem
+}
+
+.table-bordered {
+ border: 1px solid #dee2e6
+}
+
+.table-bordered td,
+.table-bordered th {
+ border: 1px solid #dee2e6
+}
+
+.table-bordered thead td,
+.table-bordered thead th {
+ border-bottom-width: 2px
+}
+
+.table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(0, 0, 0, .05)
+}
+
+.table-hover tbody tr:hover {
+ background-color: rgba(0, 0, 0, .075)
+}
+
+.table-primary,
+.table-primary>td,
+.table-primary>th {
+ background-color: #b8daff
+}
+
+.table-hover .table-primary:hover {
+ background-color: #9fcdff
+}
+
+.table-hover .table-primary:hover>td,
+.table-hover .table-primary:hover>th {
+ background-color: #9fcdff
+}
+
+.table-secondary,
+.table-secondary>td,
+.table-secondary>th {
+ background-color: #d6d8db
+}
+
+.table-hover .table-secondary:hover {
+ background-color: #c8cbcf
+}
+
+.table-hover .table-secondary:hover>td,
+.table-hover .table-secondary:hover>th {
+ background-color: #c8cbcf
+}
+
+.table-success,
+.table-success>td,
+.table-success>th {
+ background-color: #c3e6cb
+}
+
+.table-hover .table-success:hover {
+ background-color: #b1dfbb
+}
+
+.table-hover .table-success:hover>td,
+.table-hover .table-success:hover>th {
+ background-color: #b1dfbb
+}
+
+.table-info,
+.table-info>td,
+.table-info>th {
+ background-color: #bee5eb
+}
+
+.table-hover .table-info:hover {
+ background-color: #abdde5
+}
+
+.table-hover .table-info:hover>td,
+.table-hover .table-info:hover>th {
+ background-color: #abdde5
+}
+
+.table-warning,
+.table-warning>td,
+.table-warning>th {
+ background-color: #ffeeba
+}
+
+.table-hover .table-warning:hover {
+ background-color: #ffe8a1
+}
+
+.table-hover .table-warning:hover>td,
+.table-hover .table-warning:hover>th {
+ background-color: #ffe8a1
+}
+
+.table-danger,
+.table-danger>td,
+.table-danger>th {
+ background-color: #f5c6cb
+}
+
+.table-hover .table-danger:hover {
+ background-color: #f1b0b7
+}
+
+.table-hover .table-danger:hover>td,
+.table-hover .table-danger:hover>th {
+ background-color: #f1b0b7
+}
+
+.table-light,
+.table-light>td,
+.table-light>th {
+ background-color: #fdfdfe
+}
+
+.table-hover .table-light:hover {
+ background-color: #ececf6
+}
+
+.table-hover .table-light:hover>td,
+.table-hover .table-light:hover>th {
+ background-color: #ececf6
+}
+
+.table-dark,
+.table-dark>td,
+.table-dark>th {
+ background-color: #c6c8ca
+}
+
+.table-hover .table-dark:hover {
+ background-color: #b9bbbe
+}
+
+.table-hover .table-dark:hover>td,
+.table-hover .table-dark:hover>th {
+ background-color: #b9bbbe
+}
+
+.table-active,
+.table-active>td,
+.table-active>th {
+ background-color: rgba(0, 0, 0, .075)
+}
+
+.table-hover .table-active:hover {
+ background-color: rgba(0, 0, 0, .075)
+}
+
+.table-hover .table-active:hover>td,
+.table-hover .table-active:hover>th {
+ background-color: rgba(0, 0, 0, .075)
+}
+
+.table .thead-dark th {
+ color: #fff;
+ background-color: #212529;
+ border-color: #32383e
+}
+
+.table .thead-light th {
+ color: #495057;
+ background-color: #e9ecef;
+ border-color: #dee2e6
+}
+
+.table-dark {
+ color: #fff;
+ background-color: #212529
+}
+
+.table-dark td,
+.table-dark th,
+.table-dark thead th {
+ border-color: #32383e
+}
+
+.table-dark.table-bordered {
+ border: 0
+}
+
+.table-dark.table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(255, 255, 255, .05)
+}
+
+.table-dark.table-hover tbody tr:hover {
+ background-color: rgba(255, 255, 255, .075)
+}
+
+@media (max-width:575.98px) {
+ .table-responsive-sm {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar
+ }
+ .table-responsive-sm>.table-bordered {
+ border: 0
+ }
+}
+
+@media (max-width:767.98px) {
+ .table-responsive-md {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar
+ }
+ .table-responsive-md>.table-bordered {
+ border: 0
+ }
+}
+
+@media (max-width:991.98px) {
+ .table-responsive-lg {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar
+ }
+ .table-responsive-lg>.table-bordered {
+ border: 0
+ }
+}
+
+@media (max-width:1199.98px) {
+ .table-responsive-xl {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar
+ }
+ .table-responsive-xl>.table-bordered {
+ border: 0
+ }
+}
+
+.table-responsive {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ -ms-overflow-style: -ms-autohiding-scrollbar
+}
+
+.table-responsive>.table-bordered {
+ border: 0
+}
+
+.form-control {
+ display: block;
+ width: 100%;
+ padding: .375rem .75rem;
+ font-size: 1rem;
+ line-height: 1.5;
+ color: #495057;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #ced4da;
+ border-radius: .25rem;
+ transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+.form-control::-ms-expand {
+ background-color: transparent;
+ border: 0
+}
+
+.form-control:focus {
+ color: #495057;
+ background-color: #fff;
+ border-color: #80bdff;
+ outline: 0;
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
+}
+
+.form-control::-webkit-input-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control::-moz-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control:-ms-input-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control::-ms-input-placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control::placeholder {
+ color: #6c757d;
+ opacity: 1
+}
+
+.form-control:disabled,
+.form-control[readonly] {
+ background-color: #e9ecef;
+ opacity: 1
+}
+
+select.form-control:not([size]):not([multiple]) {
+ height: calc(2.25rem + 2px)
+}
+
+select.form-control:focus::-ms-value {
+ color: #495057;
+ background-color: #fff
+}
+
+.form-control-file,
+.form-control-range {
+ display: block;
+ width: 100%
+}
+
+.col-form-label {
+ padding-top: calc(.375rem + 1px);
+ padding-bottom: calc(.375rem + 1px);
+ margin-bottom: 0;
+ font-size: inherit;
+ line-height: 1.5
+}
+
+.col-form-label-lg {
+ padding-top: calc(.5rem + 1px);
+ padding-bottom: calc(.5rem + 1px);
+ font-size: 1.25rem;
+ line-height: 1.5
+}
+
+.col-form-label-sm {
+ padding-top: calc(.25rem + 1px);
+ padding-bottom: calc(.25rem + 1px);
+ font-size: .875rem;
+ line-height: 1.5
+}
+
+.form-control-plaintext {
+ display: block;
+ width: 100%;
+ padding-top: .375rem;
+ padding-bottom: .375rem;
+ margin-bottom: 0;
+ line-height: 1.5;
+ background-color: transparent;
+ border: solid transparent;
+ border-width: 1px 0
+}
+
+.form-control-plaintext.form-control-lg,
+.form-control-plaintext.form-control-sm,
+.input-group-lg>.form-control-plaintext.form-control,
+.input-group-lg>.input-group-append>.form-control-plaintext.btn,
+.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,
+.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,
+.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,
+.input-group-sm>.form-control-plaintext.form-control,
+.input-group-sm>.input-group-append>.form-control-plaintext.btn,
+.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,
+.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,
+.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.form-control-sm,
+.input-group-sm>.form-control,
+.input-group-sm>.input-group-append>.btn,
+.input-group-sm>.input-group-append>.input-group-text,
+.input-group-sm>.input-group-prepend>.btn,
+.input-group-sm>.input-group-prepend>.input-group-text {
+ padding: .25rem .5rem;
+ font-size: .875rem;
+ line-height: 1.5;
+ border-radius: .2rem
+}
+
+.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),
+.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),
+.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),
+.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
+.input-group-sm>select.form-control:not([size]):not([multiple]),
+select.form-control-sm:not([size]):not([multiple]) {
+ height: calc(1.8125rem + 2px)
+}
+
+.form-control-lg,
+.input-group-lg>.form-control,
+.input-group-lg>.input-group-append>.btn,
+.input-group-lg>.input-group-append>.input-group-text,
+.input-group-lg>.input-group-prepend>.btn,
+.input-group-lg>.input-group-prepend>.input-group-text {
+ padding: .5rem 1rem;
+ font-size: 1.25rem;
+ line-height: 1.5;
+ border-radius: .3rem
+}
+
+.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),
+.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),
+.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),
+.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),
+.input-group-lg>select.form-control:not([size]):not([multiple]),
+select.form-control-lg:not([size]):not([multiple]) {
+ height: calc(2.875rem + 2px)
+}
+
+.form-group {
+ margin-bottom: 1rem
+}
+
+.form-text {
+ display: block;
+ margin-top: .25rem
+}
+
+.form-row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -5px;
+ margin-left: -5px
+}
+
+.form-row>.col,
+.form-row>[class*=col-] {
+ padding-right: 5px;
+ padding-left: 5px
+}
+
+.form-check {
+ position: relative;
+ display: block;
+ padding-left: 1.25rem
+}
+
+.form-check-input {
+ position: absolute;
+ margin-top: .3rem;
+ margin-left: -1.25rem
+}
+
+.form-check-input:disabled~.form-check-label {
+ color: #6c757d
+}
+
+.form-check-label {
+ margin-bottom: 0
+}
+
+.form-check-inline {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-left: 0;
+ margin-right: .75rem
+}
+
+.form-check-inline .form-check-input {
+ position: static;
+ margin-top: 0;
+ margin-right: .3125rem;
+ margin-left: 0
+}
+
+.valid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: .25rem;
+ font-size: 80%;
+ color: #28a745
+}
+
+.valid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: .5rem;
+ margin-top: .1rem;
+ font-size: .875rem;
+ line-height: 1;
+ color: #fff;
+ background-color: rgba(40, 167, 69, .8);
+ border-radius: .2rem
+}
+
+.custom-select.is-valid,
+.form-control.is-valid,
+.was-validated .custom-select:valid,
+.was-validated .form-control:valid {
+ border-color: #28a745
+}
+
+.custom-select.is-valid:focus,
+.form-control.is-valid:focus,
+.was-validated .custom-select:valid:focus,
+.was-validated .form-control:valid:focus {
+ border-color: #28a745;
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
+}
+
+.custom-select.is-valid~.valid-feedback,
+.custom-select.is-valid~.valid-tooltip,
+.form-control.is-valid~.valid-feedback,
+.form-control.is-valid~.valid-tooltip,
+.was-validated .custom-select:valid~.valid-feedback,
+.was-validated .custom-select:valid~.valid-tooltip,
+.was-validated .form-control:valid~.valid-feedback,
+.was-validated .form-control:valid~.valid-tooltip {
+ display: block
+}
+
+.form-check-input.is-valid~.form-check-label,
+.was-validated .form-check-input:valid~.form-check-label {
+ color: #28a745
+}
+
+.form-check-input.is-valid~.valid-feedback,
+.form-check-input.is-valid~.valid-tooltip,
+.was-validated .form-check-input:valid~.valid-feedback,
+.was-validated .form-check-input:valid~.valid-tooltip {
+ display: block
+}
+
+.custom-control-input.is-valid~.custom-control-label,
+.was-validated .custom-control-input:valid~.custom-control-label {
+ color: #28a745
+}
+
+.custom-control-input.is-valid~.custom-control-label::before,
+.was-validated .custom-control-input:valid~.custom-control-label::before {
+ background-color: #71dd8a
+}
+
+.custom-control-input.is-valid~.valid-feedback,
+.custom-control-input.is-valid~.valid-tooltip,
+.was-validated .custom-control-input:valid~.valid-feedback,
+.was-validated .custom-control-input:valid~.valid-tooltip {
+ display: block
+}
+
+.custom-control-input.is-valid:checked~.custom-control-label::before,
+.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
+ background-color: #34ce57
+}
+
+.custom-control-input.is-valid:focus~.custom-control-label::before,
+.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25)
+}
+
+.custom-file-input.is-valid~.custom-file-label,
+.was-validated .custom-file-input:valid~.custom-file-label {
+ border-color: #28a745
+}
+
+.custom-file-input.is-valid~.custom-file-label::before,
+.was-validated .custom-file-input:valid~.custom-file-label::before {
+ border-color: inherit
+}
+
+.custom-file-input.is-valid~.valid-feedback,
+.custom-file-input.is-valid~.valid-tooltip,
+.was-validated .custom-file-input:valid~.valid-feedback,
+.was-validated .custom-file-input:valid~.valid-tooltip {
+ display: block
+}
+
+.custom-file-input.is-valid:focus~.custom-file-label,
+.was-validated .custom-file-input:valid:focus~.custom-file-label {
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
+}
+
+.invalid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: .25rem;
+ font-size: 80%;
+ color: #dc3545
+}
+
+.invalid-tooltip {
+ position: absolute;
+ top: 100%;
+ z-index: 5;
+ display: none;
+ max-width: 100%;
+ padding: .5rem;
+ margin-top: .1rem;
+ font-size: .875rem;
+ line-height: 1;
+ color: #fff;
+ background-color: rgba(220, 53, 69, .8);
+ border-radius: .2rem
+}
+
+.custom-select.is-invalid,
+.form-control.is-invalid,
+.was-validated .custom-select:invalid,
+.was-validated .form-control:invalid {
+ border-color: #dc3545
+}
+
+.custom-select.is-invalid:focus,
+.form-control.is-invalid:focus,
+.was-validated .custom-select:invalid:focus,
+.was-validated .form-control:invalid:focus {
+ border-color: #dc3545;
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
+}
+
+.custom-select.is-invalid~.invalid-feedback,
+.custom-select.is-invalid~.invalid-tooltip,
+.form-control.is-invalid~.invalid-feedback,
+.form-control.is-invalid~.invalid-tooltip,
+.was-validated .custom-select:invalid~.invalid-feedback,
+.was-validated .custom-select:invalid~.invalid-tooltip,
+.was-validated .form-control:invalid~.invalid-feedback,
+.was-validated .form-control:invalid~.invalid-tooltip {
+ display: block
+}
+
+.form-check-input.is-invalid~.form-check-label,
+.was-validated .form-check-input:invalid~.form-check-label {
+ color: #dc3545
+}
+
+.form-check-input.is-invalid~.invalid-feedback,
+.form-check-input.is-invalid~.invalid-tooltip,
+.was-validated .form-check-input:invalid~.invalid-feedback,
+.was-validated .form-check-input:invalid~.invalid-tooltip {
+ display: block
+}
+
+.custom-control-input.is-invalid~.custom-control-label,
+.was-validated .custom-control-input:invalid~.custom-control-label {
+ color: #dc3545
+}
+
+.custom-control-input.is-invalid~.custom-control-label::before,
+.was-validated .custom-control-input:invalid~.custom-control-label::before {
+ background-color: #efa2a9
+}
+
+.custom-control-input.is-invalid~.invalid-feedback,
+.custom-control-input.is-invalid~.invalid-tooltip,
+.was-validated .custom-control-input:invalid~.invalid-feedback,
+.was-validated .custom-control-input:invalid~.invalid-tooltip {
+ display: block
+}
+
+.custom-control-input.is-invalid:checked~.custom-control-label::before,
+.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
+ background-color: #e4606d
+}
+
+.custom-control-input.is-invalid:focus~.custom-control-label::before,
+.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25)
+}
+
+.custom-file-input.is-invalid~.custom-file-label,
+.was-validated .custom-file-input:invalid~.custom-file-label {
+ border-color: #dc3545
+}
+
+.custom-file-input.is-invalid~.custom-file-label::before,
+.was-validated .custom-file-input:invalid~.custom-file-label::before {
+ border-color: inherit
+}
+
+.custom-file-input.is-invalid~.invalid-feedback,
+.custom-file-input.is-invalid~.invalid-tooltip,
+.was-validated .custom-file-input:invalid~.invalid-feedback,
+.was-validated .custom-file-input:invalid~.invalid-tooltip {
+ display: block
+}
+
+.custom-file-input.is-invalid:focus~.custom-file-label,
+.was-validated .custom-file-input:invalid:focus~.custom-file-label {
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
+}
+
+.form-inline {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center
+}
+
+.form-inline .form-check {
+ width: 100%
+}
+
+@media (min-width:576px) {
+ .form-inline label {
+ 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;
+ margin-bottom: 0
+ }
+ .form-inline .form-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-bottom: 0
+ }
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle
+ }
+ .form-inline .form-control-plaintext {
+ display: inline-block
+ }
+ .form-inline .input-group {
+ width: auto
+ }
+ .form-inline .form-check {
+ 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;
+ width: auto;
+ padding-left: 0
+ }
+ .form-inline .form-check-input {
+ position: relative;
+ margin-top: 0;
+ margin-right: .25rem;
+ margin-left: 0
+ }
+ .form-inline .custom-control {
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center
+ }
+ .form-inline .custom-control-label {
+ margin-bottom: 0
+ }
+}
+
+.btn {
+ display: inline-block;
+ font-weight: 400;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: middle;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ border: 1px solid transparent;
+ padding: .375rem .75rem;
+ font-size: 1rem;
+ line-height: 1.5;
+ border-radius: .25rem;
+ transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
+}
+
+.btn:focus,
+.btn:hover {
+ text-decoration: none
+}
+
+.btn.focus,
+.btn:focus {
+ outline: 0;
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
+}
+
+.btn.disabled,
+.btn:disabled {
+ opacity: .65
+}
+
+.btn:not(:disabled):not(.disabled) {
+ cursor: pointer
+}
+
+.btn:not(:disabled):not(.disabled).active,
+.btn:not(:disabled):not(.disabled):active {
+ background-image: none
+}
+
+a.btn.disabled,
+fieldset:disabled a.btn {
+ pointer-events: none
+}
+
+.btn-primary {
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.btn-primary:hover {
+ color: #fff;
+ background-color: #0069d9;
+ border-color: #0062cc
+}
+
+.btn-primary.focus,
+.btn-primary:focus {
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
+}
+
+.btn-primary.disabled,
+.btn-primary:disabled {
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.btn-primary:not(:disabled):not(.disabled).active,
+.btn-primary:not(:disabled):not(.disabled):active,
+.show>.btn-primary.dropdown-toggle {
+ color: #fff;
+ background-color: #0062cc;
+ border-color: #005cbf
+}
+
+.btn-primary:not(:disabled):not(.disabled).active:focus,
+.btn-primary:not(:disabled):not(.disabled):active:focus,
+.show>.btn-primary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
+}
+
+.btn-secondary {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d
+}
+
+.btn-secondary:hover {
+ color: #fff;
+ background-color: #5a6268;
+ border-color: #545b62
+}
+
+.btn-secondary.focus,
+.btn-secondary:focus {
+ box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
+}
+
+.btn-secondary.disabled,
+.btn-secondary:disabled {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d
+}
+
+.btn-secondary:not(:disabled):not(.disabled).active,
+.btn-secondary:not(:disabled):not(.disabled):active,
+.show>.btn-secondary.dropdown-toggle {
+ color: #fff;
+ background-color: #545b62;
+ border-color: #4e555b
+}
+
+.btn-secondary:not(:disabled):not(.disabled).active:focus,
+.btn-secondary:not(:disabled):not(.disabled):active:focus,
+.show>.btn-secondary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
+}
+
+.btn-success {
+ color: #fff;
+ background-color: #28a745;
+ border-color: #28a745
+}
+
+.btn-success:hover {
+ color: #fff;
+ background-color: #218838;
+ border-color: #1e7e34
+}
+
+.btn-success.focus,
+.btn-success:focus {
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
+}
+
+.btn-success.disabled,
+.btn-success:disabled {
+ color: #fff;
+ background-color: #28a745;
+ border-color: #28a745
+}
+
+.btn-success:not(:disabled):not(.disabled).active,
+.btn-success:not(:disabled):not(.disabled):active,
+.show>.btn-success.dropdown-toggle {
+ color: #fff;
+ background-color: #1e7e34;
+ border-color: #1c7430
+}
+
+.btn-success:not(:disabled):not(.disabled).active:focus,
+.btn-success:not(:disabled):not(.disabled):active:focus,
+.show>.btn-success.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
+}
+
+.btn-info {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8
+}
+
+.btn-info:hover {
+ color: #fff;
+ background-color: #138496;
+ border-color: #117a8b
+}
+
+.btn-info.focus,
+.btn-info:focus {
+ box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
+}
+
+.btn-info.disabled,
+.btn-info:disabled {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8
+}
+
+.btn-info:not(:disabled):not(.disabled).active,
+.btn-info:not(:disabled):not(.disabled):active,
+.show>.btn-info.dropdown-toggle {
+ color: #fff;
+ background-color: #117a8b;
+ border-color: #10707f
+}
+
+.btn-info:not(:disabled):not(.disabled).active:focus,
+.btn-info:not(:disabled):not(.disabled):active:focus,
+.show>.btn-info.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
+}
+
+.btn-warning {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107
+}
+
+.btn-warning:hover {
+ color: #212529;
+ background-color: #e0a800;
+ border-color: #d39e00
+}
+
+.btn-warning.focus,
+.btn-warning:focus {
+ box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
+}
+
+.btn-warning.disabled,
+.btn-warning:disabled {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107
+}
+
+.btn-warning:not(:disabled):not(.disabled).active,
+.btn-warning:not(:disabled):not(.disabled):active,
+.show>.btn-warning.dropdown-toggle {
+ color: #212529;
+ background-color: #d39e00;
+ border-color: #c69500
+}
+
+.btn-warning:not(:disabled):not(.disabled).active:focus,
+.btn-warning:not(:disabled):not(.disabled):active:focus,
+.show>.btn-warning.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
+}
+
+.btn-danger {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545
+}
+
+.btn-danger:hover {
+ color: #fff;
+ background-color: #c82333;
+ border-color: #bd2130
+}
+
+.btn-danger.focus,
+.btn-danger:focus {
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
+}
+
+.btn-danger.disabled,
+.btn-danger:disabled {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545
+}
+
+.btn-danger:not(:disabled):not(.disabled).active,
+.btn-danger:not(:disabled):not(.disabled):active,
+.show>.btn-danger.dropdown-toggle {
+ color: #fff;
+ background-color: #bd2130;
+ border-color: #b21f2d
+}
+
+.btn-danger:not(:disabled):not(.disabled).active:focus,
+.btn-danger:not(:disabled):not(.disabled):active:focus,
+.show>.btn-danger.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
+}
+
+.btn-light {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa
+}
+
+.btn-light:hover {
+ color: #212529;
+ background-color: #e2e6ea;
+ border-color: #dae0e5
+}
+
+.btn-light.focus,
+.btn-light:focus {
+ box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
+}
+
+.btn-light.disabled,
+.btn-light:disabled {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa
+}
+
+.btn-light:not(:disabled):not(.disabled).active,
+.btn-light:not(:disabled):not(.disabled):active,
+.show>.btn-light.dropdown-toggle {
+ color: #212529;
+ background-color: #dae0e5;
+ border-color: #d3d9df
+}
+
+.btn-light:not(:disabled):not(.disabled).active:focus,
+.btn-light:not(:disabled):not(.disabled):active:focus,
+.show>.btn-light.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
+}
+
+.btn-dark {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40
+}
+
+.btn-dark:hover {
+ color: #fff;
+ background-color: #23272b;
+ border-color: #1d2124
+}
+
+.btn-dark.focus,
+.btn-dark:focus {
+ box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
+}
+
+.btn-dark.disabled,
+.btn-dark:disabled {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40
+}
+
+.btn-dark:not(:disabled):not(.disabled).active,
+.btn-dark:not(:disabled):not(.disabled):active,
+.show>.btn-dark.dropdown-toggle {
+ color: #fff;
+ background-color: #1d2124;
+ border-color: #171a1d
+}
+
+.btn-dark:not(:disabled):not(.disabled).active:focus,
+.btn-dark:not(:disabled):not(.disabled):active:focus,
+.show>.btn-dark.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
+}
+
+.btn-outline-primary {
+ color: #007bff;
+ background-color: transparent;
+ background-image: none;
+ border-color: #007bff
+}
+
+.btn-outline-primary:hover {
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.btn-outline-primary.focus,
+.btn-outline-primary:focus {
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
+}
+
+.btn-outline-primary.disabled,
+.btn-outline-primary:disabled {
+ color: #007bff;
+ background-color: transparent
+}
+
+.btn-outline-primary:not(:disabled):not(.disabled).active,
+.btn-outline-primary:not(:disabled):not(.disabled):active,
+.show>.btn-outline-primary.dropdown-toggle {
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
+.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-primary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
+}
+
+.btn-outline-secondary {
+ color: #6c757d;
+ background-color: transparent;
+ background-image: none;
+ border-color: #6c757d
+}
+
+.btn-outline-secondary:hover {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d
+}
+
+.btn-outline-secondary.focus,
+.btn-outline-secondary:focus {
+ box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
+}
+
+.btn-outline-secondary.disabled,
+.btn-outline-secondary:disabled {
+ color: #6c757d;
+ background-color: transparent
+}
+
+.btn-outline-secondary:not(:disabled):not(.disabled).active,
+.btn-outline-secondary:not(:disabled):not(.disabled):active,
+.show>.btn-outline-secondary.dropdown-toggle {
+ color: #fff;
+ background-color: #6c757d;
+ border-color: #6c757d
+}
+
+.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
+.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-secondary.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
+}
+
+.btn-outline-success {
+ color: #28a745;
+ background-color: transparent;
+ background-image: none;
+ border-color: #28a745
+}
+
+.btn-outline-success:hover {
+ color: #fff;
+ background-color: #28a745;
+ border-color: #28a745
+}
+
+.btn-outline-success.focus,
+.btn-outline-success:focus {
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
+}
+
+.btn-outline-success.disabled,
+.btn-outline-success:disabled {
+ color: #28a745;
+ background-color: transparent
+}
+
+.btn-outline-success:not(:disabled):not(.disabled).active,
+.btn-outline-success:not(:disabled):not(.disabled):active,
+.show>.btn-outline-success.dropdown-toggle {
+ color: #fff;
+ background-color: #28a745;
+ border-color: #28a745
+}
+
+.btn-outline-success:not(:disabled):not(.disabled).active:focus,
+.btn-outline-success:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-success.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
+}
+
+.btn-outline-info {
+ color: #17a2b8;
+ background-color: transparent;
+ background-image: none;
+ border-color: #17a2b8
+}
+
+.btn-outline-info:hover {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8
+}
+
+.btn-outline-info.focus,
+.btn-outline-info:focus {
+ box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
+}
+
+.btn-outline-info.disabled,
+.btn-outline-info:disabled {
+ color: #17a2b8;
+ background-color: transparent
+}
+
+.btn-outline-info:not(:disabled):not(.disabled).active,
+.btn-outline-info:not(:disabled):not(.disabled):active,
+.show>.btn-outline-info.dropdown-toggle {
+ color: #fff;
+ background-color: #17a2b8;
+ border-color: #17a2b8
+}
+
+.btn-outline-info:not(:disabled):not(.disabled).active:focus,
+.btn-outline-info:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-info.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
+}
+
+.btn-outline-warning {
+ color: #ffc107;
+ background-color: transparent;
+ background-image: none;
+ border-color: #ffc107
+}
+
+.btn-outline-warning:hover {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107
+}
+
+.btn-outline-warning.focus,
+.btn-outline-warning:focus {
+ box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
+}
+
+.btn-outline-warning.disabled,
+.btn-outline-warning:disabled {
+ color: #ffc107;
+ background-color: transparent
+}
+
+.btn-outline-warning:not(:disabled):not(.disabled).active,
+.btn-outline-warning:not(:disabled):not(.disabled):active,
+.show>.btn-outline-warning.dropdown-toggle {
+ color: #212529;
+ background-color: #ffc107;
+ border-color: #ffc107
+}
+
+.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
+.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-warning.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
+}
+
+.btn-outline-danger {
+ color: #dc3545;
+ background-color: transparent;
+ background-image: none;
+ border-color: #dc3545
+}
+
+.btn-outline-danger:hover {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545
+}
+
+.btn-outline-danger.focus,
+.btn-outline-danger:focus {
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
+}
+
+.btn-outline-danger.disabled,
+.btn-outline-danger:disabled {
+ color: #dc3545;
+ background-color: transparent
+}
+
+.btn-outline-danger:not(:disabled):not(.disabled).active,
+.btn-outline-danger:not(:disabled):not(.disabled):active,
+.show>.btn-outline-danger.dropdown-toggle {
+ color: #fff;
+ background-color: #dc3545;
+ border-color: #dc3545
+}
+
+.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
+.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-danger.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
+}
+
+.btn-outline-light {
+ color: #f8f9fa;
+ background-color: transparent;
+ background-image: none;
+ border-color: #f8f9fa
+}
+
+.btn-outline-light:hover {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa
+}
+
+.btn-outline-light.focus,
+.btn-outline-light:focus {
+ box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
+}
+
+.btn-outline-light.disabled,
+.btn-outline-light:disabled {
+ color: #f8f9fa;
+ background-color: transparent
+}
+
+.btn-outline-light:not(:disabled):not(.disabled).active,
+.btn-outline-light:not(:disabled):not(.disabled):active,
+.show>.btn-outline-light.dropdown-toggle {
+ color: #212529;
+ background-color: #f8f9fa;
+ border-color: #f8f9fa
+}
+
+.btn-outline-light:not(:disabled):not(.disabled).active:focus,
+.btn-outline-light:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-light.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
+}
+
+.btn-outline-dark {
+ color: #343a40;
+ background-color: transparent;
+ background-image: none;
+ border-color: #343a40
+}
+
+.btn-outline-dark:hover {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40
+}
+
+.btn-outline-dark.focus,
+.btn-outline-dark:focus {
+ box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
+}
+
+.btn-outline-dark.disabled,
+.btn-outline-dark:disabled {
+ color: #343a40;
+ background-color: transparent
+}
+
+.btn-outline-dark:not(:disabled):not(.disabled).active,
+.btn-outline-dark:not(:disabled):not(.disabled):active,
+.show>.btn-outline-dark.dropdown-toggle {
+ color: #fff;
+ background-color: #343a40;
+ border-color: #343a40
+}
+
+.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
+.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
+.show>.btn-outline-dark.dropdown-toggle:focus {
+ box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
+}
+
+.btn-link {
+ font-weight: 400;
+ color: #007bff;
+ background-color: transparent
+}
+
+.btn-link:hover {
+ color: #0056b3;
+ text-decoration: underline;
+ background-color: transparent;
+ border-color: transparent
+}
+
+.btn-link.focus,
+.btn-link:focus {
+ text-decoration: underline;
+ border-color: transparent;
+ box-shadow: none
+}
+
+.btn-link.disabled,
+.btn-link:disabled {
+ color: #6c757d
+}
+
+.btn-group-lg>.btn,
+.btn-lg {
+ padding: .5rem 1rem;
+ font-size: 1.25rem;
+ line-height: 1.5;
+ border-radius: .3rem
+}
+
+.btn-group-sm>.btn,
+.btn-sm {
+ padding: .25rem .5rem;
+ font-size: .875rem;
+ line-height: 1.5;
+ border-radius: .2rem
+}
+
+.btn-block {
+ display: block;
+ width: 100%
+}
+
+.btn-block+.btn-block {
+ margin-top: .5rem
+}
+
+input[type=button].btn-block,
+input[type=reset].btn-block,
+input[type=submit].btn-block {
+ width: 100%
+}
+
+.fade {
+ opacity: 0;
+ transition: opacity .15s linear
+}
+
+.fade.show {
+ opacity: 1
+}
+
+.collapse {
+ display: none
+}
+
+.collapse.show {
+ display: block
+}
+
+tr.collapse.show {
+ display: table-row
+}
+
+tbody.collapse.show {
+ display: table-row-group
+}
+
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ transition: height .35s ease
+}
+
+.dropdown,
+.dropup {
+ position: relative
+}
+
+.dropdown-toggle::after {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid;
+ border-right: .3em solid transparent;
+ border-bottom: 0;
+ border-left: .3em solid transparent
+}
+
+.dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 10rem;
+ padding: .5rem 0;
+ margin: .125rem 0 0;
+ font-size: 1rem;
+ color: #212529;
+ text-align: left;
+ list-style: none;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .15);
+ border-radius: .25rem
+}
+
+.dropup .dropdown-menu {
+ margin-top: 0;
+ margin-bottom: .125rem
+}
+
+.dropup .dropdown-toggle::after {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: 0;
+ border-right: .3em solid transparent;
+ border-bottom: .3em solid;
+ border-left: .3em solid transparent
+}
+
+.dropup .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropright .dropdown-menu {
+ margin-top: 0;
+ margin-left: .125rem
+}
+
+.dropright .dropdown-toggle::after {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid transparent;
+ border-bottom: .3em solid transparent;
+ border-left: .3em solid
+}
+
+.dropright .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropright .dropdown-toggle::after {
+ vertical-align: 0
+}
+
+.dropleft .dropdown-menu {
+ margin-top: 0;
+ margin-right: .125rem
+}
+
+.dropleft .dropdown-toggle::after {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-left: .255em;
+ vertical-align: .255em;
+ content: ""
+}
+
+.dropleft .dropdown-toggle::after {
+ display: none
+}
+
+.dropleft .dropdown-toggle::before {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ margin-right: .255em;
+ vertical-align: .255em;
+ content: "";
+ border-top: .3em solid transparent;
+ border-right: .3em solid;
+ border-bottom: .3em solid transparent
+}
+
+.dropleft .dropdown-toggle:empty::after {
+ margin-left: 0
+}
+
+.dropleft .dropdown-toggle::before {
+ vertical-align: 0
+}
+
+.dropdown-divider {
+ height: 0;
+ margin: .5rem 0;
+ overflow: hidden;
+ border-top: 1px solid #e9ecef
+}
+
+.dropdown-item {
+ display: block;
+ width: 100%;
+ padding: .25rem 1.5rem;
+ clear: both;
+ font-weight: 400;
+ color: #212529;
+ text-align: inherit;
+ white-space: nowrap;
+ background-color: transparent;
+ border: 0
+}
+
+.dropdown-item:focus,
+.dropdown-item:hover {
+ color: #16181b;
+ text-decoration: none;
+ background-color: #f8f9fa
+}
+
+.dropdown-item.active,
+.dropdown-item:active {
+ color: #fff;
+ text-decoration: none;
+ background-color: #007bff
+}
+
+.dropdown-item.disabled,
+.dropdown-item:disabled {
+ color: #6c757d;
+ background-color: transparent
+}
+
+.dropdown-menu.show {
+ display: block
+}
+
+.dropdown-header {
+ display: block;
+ padding: .5rem 1.5rem;
+ margin-bottom: 0;
+ font-size: .875rem;
+ color: #6c757d;
+ white-space: nowrap
+}
+
+.btn-group,
+.btn-group-vertical {
+ position: relative;
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ vertical-align: middle
+}
+
+.btn-group-vertical>.btn,
+.btn-group>.btn {
+ position: relative;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto
+}
+
+.btn-group-vertical>.btn:hover,
+.btn-group>.btn:hover {
+ z-index: 1
+}
+
+.btn-group-vertical>.btn.active,
+.btn-group-vertical>.btn:active,
+.btn-group-vertical>.btn:focus,
+.btn-group>.btn.active,
+.btn-group>.btn:active,
+.btn-group>.btn:focus {
+ z-index: 1
+}
+
+.btn-group .btn+.btn,
+.btn-group .btn+.btn-group,
+.btn-group .btn-group+.btn,
+.btn-group .btn-group+.btn-group,
+.btn-group-vertical .btn+.btn,
+.btn-group-vertical .btn+.btn-group,
+.btn-group-vertical .btn-group+.btn,
+.btn-group-vertical .btn-group+.btn-group {
+ margin-left: -1px
+}
+
+.btn-toolbar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+}
+
+.btn-toolbar .input-group {
+ width: auto
+}
+
+.btn-group>.btn:first-child {
+ margin-left: 0
+}
+
+.btn-group>.btn-group:not(:last-child)>.btn,
+.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.btn-group>.btn-group:not(:first-child)>.btn,
+.btn-group>.btn:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.dropdown-toggle-split {
+ padding-right: .5625rem;
+ padding-left: .5625rem
+}
+
+.dropdown-toggle-split::after {
+ margin-left: 0
+}
+
+.btn-group-sm>.btn+.dropdown-toggle-split,
+.btn-sm+.dropdown-toggle-split {
+ padding-right: .375rem;
+ padding-left: .375rem
+}
+
+.btn-group-lg>.btn+.dropdown-toggle-split,
+.btn-lg+.dropdown-toggle-split {
+ padding-right: .75rem;
+ padding-left: .75rem
+}
+
+.btn-group-vertical {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center
+}
+
+.btn-group-vertical .btn,
+.btn-group-vertical .btn-group {
+ width: 100%
+}
+
+.btn-group-vertical>.btn+.btn,
+.btn-group-vertical>.btn+.btn-group,
+.btn-group-vertical>.btn-group+.btn,
+.btn-group-vertical>.btn-group+.btn-group {
+ margin-top: -1px;
+ margin-left: 0
+}
+
+.btn-group-vertical>.btn-group:not(:last-child)>.btn,
+.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.btn-group-vertical>.btn-group:not(:first-child)>.btn,
+.btn-group-vertical>.btn:not(:first-child) {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0
+}
+
+.btn-group-toggle>.btn,
+.btn-group-toggle>.btn-group>.btn {
+ margin-bottom: 0
+}
+
+.btn-group-toggle>.btn input[type=checkbox],
+.btn-group-toggle>.btn input[type=radio],
+.btn-group-toggle>.btn-group>.btn input[type=checkbox],
+.btn-group-toggle>.btn-group>.btn input[type=radio] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none
+}
+
+.input-group {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ width: 100%
+}
+
+.input-group>.custom-file,
+.input-group>.custom-select,
+.input-group>.form-control {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ width: 1%;
+ margin-bottom: 0
+}
+
+.input-group>.custom-file:focus,
+.input-group>.custom-select:focus,
+.input-group>.form-control:focus {
+ z-index: 3
+}
+
+.input-group>.custom-file+.custom-file,
+.input-group>.custom-file+.custom-select,
+.input-group>.custom-file+.form-control,
+.input-group>.custom-select+.custom-file,
+.input-group>.custom-select+.custom-select,
+.input-group>.custom-select+.form-control,
+.input-group>.form-control+.custom-file,
+.input-group>.form-control+.custom-select,
+.input-group>.form-control+.form-control {
+ margin-left: -1px
+}
+
+.input-group>.custom-select:not(:last-child),
+.input-group>.form-control:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.input-group>.custom-select:not(:first-child),
+.input-group>.form-control:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.input-group>.custom-file {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center
+}
+
+.input-group>.custom-file:not(:last-child) .custom-file-label,
+.input-group>.custom-file:not(:last-child) .custom-file-label::before {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.input-group>.custom-file:not(:first-child) .custom-file-label,
+.input-group>.custom-file:not(:first-child) .custom-file-label::before {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.input-group-append,
+.input-group-prepend {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex
+}
+
+.input-group-append .btn,
+.input-group-prepend .btn {
+ position: relative;
+ z-index: 2
+}
+
+.input-group-append .btn+.btn,
+.input-group-append .btn+.input-group-text,
+.input-group-append .input-group-text+.btn,
+.input-group-append .input-group-text+.input-group-text,
+.input-group-prepend .btn+.btn,
+.input-group-prepend .btn+.input-group-text,
+.input-group-prepend .input-group-text+.btn,
+.input-group-prepend .input-group-text+.input-group-text {
+ margin-left: -1px
+}
+
+.input-group-prepend {
+ margin-right: -1px
+}
+
+.input-group-append {
+ margin-left: -1px
+}
+
+.input-group-text {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: .375rem .75rem;
+ margin-bottom: 0;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ color: #495057;
+ text-align: center;
+ white-space: nowrap;
+ background-color: #e9ecef;
+ border: 1px solid #ced4da;
+ border-radius: .25rem
+}
+
+.input-group-text input[type=checkbox],
+.input-group-text input[type=radio] {
+ margin-top: 0
+}
+
+.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
+.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
+.input-group>.input-group-append:not(:last-child)>.btn,
+.input-group>.input-group-append:not(:last-child)>.input-group-text,
+.input-group>.input-group-prepend>.btn,
+.input-group>.input-group-prepend>.input-group-text {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+}
+
+.input-group>.input-group-append>.btn,
+.input-group>.input-group-append>.input-group-text,
+.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
+.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
+.input-group>.input-group-prepend:not(:first-child)>.btn,
+.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+}
+
+.custom-control {
+ position: relative;
+ display: block;
+ min-height: 1.5rem;
+ padding-left: 1.5rem
+}
+
+.custom-control-inline {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ margin-right: 1rem
+}
+
+.custom-control-input {
+ position: absolute;
+ z-index: -1;
+ opacity: 0
+}
+
+.custom-control-input:checked~.custom-control-label::before {
+ color: #fff;
+ background-color: #007bff
+}
+
+.custom-control-input:focus~.custom-control-label::before {
+ box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
+}
+
+.custom-control-input:active~.custom-control-label::before {
+ color: #fff;
+ background-color: #b3d7ff
+}
+
+.custom-control-input:disabled~.custom-control-label {
+ color: #6c757d
+}
+
+.custom-control-input:disabled~.custom-control-label::before {
+ background-color: #e9ecef
+}
+
+.custom-control-label {
+ margin-bottom: 0
+}
+
+.custom-control-label::before {
+ position: absolute;
+ top: .25rem;
+ left: 0;
+ display: block;
+ width: 1rem;
+ height: 1rem;
+ pointer-events: none;
+ content: "";
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ background-color: #dee2e6
+}
+
+.custom-control-label::after {
+ position: absolute;
+ top: .25rem;
+ left: 0;
+ display: block;
+ width: 1rem;
+ height: 1rem;
+ content: "";
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-size: 50% 50%
+}
+
+.custom-checkbox .custom-control-label::before {
+ border-radius: .25rem
+}
+
+.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
+ background-color: #007bff
+}
+
+.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
+}
+
+.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
+ background-color: #007bff
+}
+
+.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
+}
+
+.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
+ background-color: rgba(0, 123, 255, .5)
+}
+
+.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
+ background-color: rgba(0, 123, 255, .5)
+}
+
+.custom-radio .custom-control-label::before {
+ border-radius: 50%
+}
+
+.custom-radio .custom-control-input:checked~.custom-control-label::before {
+ background-color: #007bff
+}
+
+.custom-radio .custom-control-input:checked~.custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
+}
+
+.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
+ background-color: rgba(0, 123, 255, .5)
+}
+
+.custom-select {
+ display: inline-block;
+ width: 100%;
+ height: calc(2.25rem + 2px);
+ padding: .375rem 1.75rem .375rem .75rem;
+ line-height: 1.5;
+ color: #495057;
+ vertical-align: middle;
+ background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
+ background-size: 8px 10px;
+ border: 1px solid #ced4da;
+ border-radius: .25rem;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none
+}
+
+.custom-select:focus {
+ border-color: #80bdff;
+ outline: 0;
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 5px rgba(128, 189, 255, .5)
+}
+
+.custom-select:focus::-ms-value {
+ color: #495057;
+ background-color: #fff
+}
+
+.custom-select[multiple],
+.custom-select[size]:not([size="1"]) {
+ height: auto;
+ padding-right: .75rem;
+ background-image: none
+}
+
+.custom-select:disabled {
+ color: #6c757d;
+ background-color: #e9ecef
+}
+
+.custom-select::-ms-expand {
+ opacity: 0
+}
+
+.custom-select-sm {
+ height: calc(1.8125rem + 2px);
+ padding-top: .375rem;
+ padding-bottom: .375rem;
+ font-size: 75%
+}
+
+.custom-select-lg {
+ height: calc(2.875rem + 2px);
+ padding-top: .375rem;
+ padding-bottom: .375rem;
+ font-size: 125%
+}
+
+.custom-file {
+ position: relative;
+ display: inline-block;
+ width: 100%;
+ height: calc(2.25rem + 2px);
+ margin-bottom: 0
+}
+
+.custom-file-input {
+ position: relative;
+ z-index: 2;
+ width: 100%;
+ height: calc(2.25rem + 2px);
+ margin: 0;
+ opacity: 0
+}
+
+.custom-file-input:focus~.custom-file-control {
+ border-color: #80bdff;
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
+}
+
+.custom-file-input:focus~.custom-file-control::before {
+ border-color: #80bdff
+}
+
+.custom-file-input:lang(en)~.custom-file-label::after {
+ content: "Browse"
+}
+
+.custom-file-label {
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 1;
+ height: calc(2.25rem + 2px);
+ padding: .375rem .75rem;
+ line-height: 1.5;
+ color: #495057;
+ background-color: #fff;
+ border: 1px solid #ced4da;
+ border-radius: .25rem
+}
+
+.custom-file-label::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 3;
+ display: block;
+ height: calc(calc(2.25rem + 2px) - 1px * 2);
+ padding: .375rem .75rem;
+ line-height: 1.5;
+ color: #495057;
+ content: "Browse";
+ background-color: #e9ecef;
+ border-left: 1px solid #ced4da;
+ border-radius: 0 .25rem .25rem 0
+}
+
+.nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none
+}
+
+.nav-link {
+ display: block;
+ padding: .5rem 1rem
+}
+
+.nav-link:focus,
+.nav-link:hover {
+ text-decoration: none
+}
+
+.nav-link.disabled {
+ color: #6c757d
+}
+
+.nav-tabs {
+ border-bottom: 1px solid #dee2e6
+}
+
+.nav-tabs .nav-item {
+ margin-bottom: -1px
+}
+
+.nav-tabs .nav-link {
+ border: 1px solid transparent;
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+}
+
+.nav-tabs .nav-link:focus,
+.nav-tabs .nav-link:hover {
+ border-color: #e9ecef #e9ecef #dee2e6
+}
+
+.nav-tabs .nav-link.disabled {
+ color: #6c757d;
+ background-color: transparent;
+ border-color: transparent
+}
+
+.nav-tabs .nav-item.show .nav-link,
+.nav-tabs .nav-link.active {
+ color: #495057;
+ background-color: #fff;
+ border-color: #dee2e6 #dee2e6 #fff
+}
+
+.nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0
+}
+
+.nav-pills .nav-link {
+ border-radius: .25rem
+}
+
+.nav-pills .nav-link.active,
+.nav-pills .show>.nav-link {
+ color: #fff;
+ background-color: #007bff
+}
+
+.nav-fill .nav-item {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ text-align: center
+}
+
+.nav-justified .nav-item {
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ text-align: center
+}
+
+.tab-content>.tab-pane {
+ display: none
+}
+
+.tab-content>.active {
+ display: block
+}
+
+.navbar {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: .5rem 1rem
+}
+
+.navbar>.container,
+.navbar>.container-fluid {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between
+}
+
+.navbar-brand {
+ display: inline-block;
+ padding-top: .3125rem;
+ padding-bottom: .3125rem;
+ margin-right: 1rem;
+ font-size: 1.25rem;
+ line-height: inherit;
+ white-space: nowrap
+}
+
+.navbar-brand:focus,
+.navbar-brand:hover {
+ text-decoration: none
+}
+
+.navbar-nav {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ list-style: none
+}
+
+.navbar-nav .nav-link {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.navbar-nav .dropdown-menu {
+ position: static;
+ float: none
+}
+
+.navbar-text {
+ display: inline-block;
+ padding-top: .5rem;
+ padding-bottom: .5rem
+}
+
+.navbar-collapse {
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center
+}
+
+.navbar-toggler {
+ padding: .25rem .75rem;
+ font-size: 1.25rem;
+ line-height: 1;
+ background-color: transparent;
+ border: 1px solid transparent;
+ border-radius: .25rem
+}
+
+.navbar-toggler:focus,
+.navbar-toggler:hover {
+ text-decoration: none
+}
+
+.navbar-toggler:not(:disabled):not(.disabled) {
+ cursor: pointer
+}
+
+.navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ content: "";
+ background: no-repeat center center;
+ background-size: 100% 100%
+}
+
+@media (max-width:575.98px) {
+ .navbar-expand-sm>.container,
+ .navbar-expand-sm>.container-fluid {
+ padding-right: 0;
+ padding-left: 0
+ }
+}
+
+@media (min-width:576px) {
+ .navbar-expand-sm {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+ }
+ .navbar-expand-sm .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-sm .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-sm .navbar-nav .dropdown-menu-right {
+ right: 0;
+ left: auto
+ }
+ .navbar-expand-sm .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-sm>.container,
+ .navbar-expand-sm>.container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap
+ }
+ .navbar-expand-sm .navbar-collapse {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-sm .navbar-toggler {
+ display: none
+ }
+ .navbar-expand-sm .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%
+ }
+}
+
+@media (max-width:767.98px) {
+ .navbar-expand-md>.container,
+ .navbar-expand-md>.container-fluid {
+ padding-right: 0;
+ padding-left: 0
+ }
+}
+
+@media (min-width:768px) {
+ .navbar-expand-md {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+ }
+ .navbar-expand-md .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-md .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-md .navbar-nav .dropdown-menu-right {
+ right: 0;
+ left: auto
+ }
+ .navbar-expand-md .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-md>.container,
+ .navbar-expand-md>.container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap
+ }
+ .navbar-expand-md .navbar-collapse {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-md .navbar-toggler {
+ display: none
+ }
+ .navbar-expand-md .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%
+ }
+}
+
+@media (max-width:991.98px) {
+ .navbar-expand-lg>.container,
+ .navbar-expand-lg>.container-fluid {
+ padding-right: 0;
+ padding-left: 0
+ }
+}
+
+@media (min-width:992px) {
+ .navbar-expand-lg {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+ }
+ .navbar-expand-lg .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-lg .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-lg .navbar-nav .dropdown-menu-right {
+ right: 0;
+ left: auto
+ }
+ .navbar-expand-lg .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-lg>.container,
+ .navbar-expand-lg>.container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap
+ }
+ .navbar-expand-lg .navbar-collapse {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-lg .navbar-toggler {
+ display: none
+ }
+ .navbar-expand-lg .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%
+ }
+}
+
+@media (max-width:1199.98px) {
+ .navbar-expand-xl>.container,
+ .navbar-expand-xl>.container-fluid {
+ padding-right: 0;
+ padding-left: 0
+ }
+}
+
+@media (min-width:1200px) {
+ .navbar-expand-xl {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+ }
+ .navbar-expand-xl .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row
+ }
+ .navbar-expand-xl .navbar-nav .dropdown-menu {
+ position: absolute
+ }
+ .navbar-expand-xl .navbar-nav .dropdown-menu-right {
+ right: 0;
+ left: auto
+ }
+ .navbar-expand-xl .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+ }
+ .navbar-expand-xl>.container,
+ .navbar-expand-xl>.container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap
+ }
+ .navbar-expand-xl .navbar-collapse {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto
+ }
+ .navbar-expand-xl .navbar-toggler {
+ display: none
+ }
+ .navbar-expand-xl .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%
+ }
+}
+
+.navbar-expand {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start
+}
+
+.navbar-expand>.container,
+.navbar-expand>.container-fluid {
+ padding-right: 0;
+ padding-left: 0
+}
+
+.navbar-expand .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: row;
+ flex-direction: row
+}
+
+.navbar-expand .navbar-nav .dropdown-menu {
+ position: absolute
+}
+
+.navbar-expand .navbar-nav .dropdown-menu-right {
+ right: 0;
+ left: auto
+}
+
+.navbar-expand .navbar-nav .nav-link {
+ padding-right: .5rem;
+ padding-left: .5rem
+}
+
+.navbar-expand>.container,
+.navbar-expand>.container-fluid {
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap
+}
+
+.navbar-expand .navbar-collapse {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto
+}
+
+.navbar-expand .navbar-toggler {
+ display: none
+}
+
+.navbar-expand .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%
+}
+
+.navbar-light .navbar-brand {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-brand:focus,
+.navbar-light .navbar-brand:hover {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-nav .nav-link {
+ color: rgba(0, 0, 0, .5)
+}
+
+.navbar-light .navbar-nav .nav-link:focus,
+.navbar-light .navbar-nav .nav-link:hover {
+ color: rgba(0, 0, 0, .7)
+}
+
+.navbar-light .navbar-nav .nav-link.disabled {
+ color: rgba(0, 0, 0, .3)
+}
+
+.navbar-light .navbar-nav .active>.nav-link,
+.navbar-light .navbar-nav .nav-link.active,
+.navbar-light .navbar-nav .nav-link.show,
+.navbar-light .navbar-nav .show>.nav-link {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-toggler {
+ color: rgba(0, 0, 0, .5);
+ border-color: rgba(0, 0, 0, .1)
+}
+
+.navbar-light .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
+}
+
+.navbar-light .navbar-text {
+ color: rgba(0, 0, 0, .5)
+}
+
+.navbar-light .navbar-text a {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-light .navbar-text a:focus,
+.navbar-light .navbar-text a:hover {
+ color: rgba(0, 0, 0, .9)
+}
+
+.navbar-dark .navbar-brand {
+ color: #fff
+}
+
+.navbar-dark .navbar-brand:focus,
+.navbar-dark .navbar-brand:hover {
+ color: #fff
+}
+
+.navbar-dark .navbar-nav .nav-link {
+ color: rgba(255, 255, 255, .5)
+}
+
+.navbar-dark .navbar-nav .nav-link:focus,
+.navbar-dark .navbar-nav .nav-link:hover {
+ color: rgba(255, 255, 255, .75)
+}
+
+.navbar-dark .navbar-nav .nav-link.disabled {
+ color: rgba(255, 255, 255, .25)
+}
+
+.navbar-dark .navbar-nav .active>.nav-link,
+.navbar-dark .navbar-nav .nav-link.active,
+.navbar-dark .navbar-nav .nav-link.show,
+.navbar-dark .navbar-nav .show>.nav-link {
+ color: #fff
+}
+
+.navbar-dark .navbar-toggler {
+ color: rgba(255, 255, 255, .5);
+ border-color: rgba(255, 255, 255, .1)
+}
+
+.navbar-dark .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
+}
+
+.navbar-dark .navbar-text {
+ color: rgba(255, 255, 255, .5)
+}
+
+.navbar-dark .navbar-text a {
+ color: #fff
+}
+
+.navbar-dark .navbar-text a:focus,
+.navbar-dark .navbar-text a:hover {
+ color: #fff
+}
+
+.card {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ min-width: 0;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: border-box;
+ border: 1px solid rgba(0, 0, 0, .125);
+ border-radius: .25rem
+}
+
+.card>hr {
+ margin-right: 0;
+ margin-left: 0
+}
+
+.card>.list-group:first-child .list-group-item:first-child {
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+}
+
+.card>.list-group:last-child .list-group-item:last-child {
+ border-bottom-right-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.card-body {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1.25rem
+}
+
+.card-title {
+ margin-bottom: .75rem
+}
+
+.card-subtitle {
+ margin-top: -.375rem;
+ margin-bottom: 0
+}
+
+.card-text:last-child {
+ margin-bottom: 0
+}
+
+.card-link:hover {
+ text-decoration: none
+}
+
+.card-link+.card-link {
+ margin-left: 1.25rem
+}
+
+.card-header {
+ padding: .75rem 1.25rem;
+ margin-bottom: 0;
+ background-color: rgba(0, 0, 0, .03);
+ border-bottom: 1px solid rgba(0, 0, 0, .125)
+}
+
+.card-header:first-child {
+ border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
+}
+
+.card-header+.list-group .list-group-item:first-child {
+ border-top: 0
+}
+
+.card-footer {
+ padding: .75rem 1.25rem;
+ background-color: rgba(0, 0, 0, .03);
+ border-top: 1px solid rgba(0, 0, 0, .125)
+}
+
+.card-footer:last-child {
+ border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
+}
+
+.card-header-tabs {
+ margin-right: -.625rem;
+ margin-bottom: -.75rem;
+ margin-left: -.625rem;
+ border-bottom: 0
+}
+
+.card-header-pills {
+ margin-right: -.625rem;
+ margin-left: -.625rem
+}
+
+.card-img-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 1.25rem
+}
+
+.card-img {
+ width: 100%;
+ border-radius: calc(.25rem - 1px)
+}
+
+.card-img-top {
+ width: 100%;
+ border-top-left-radius: calc(.25rem - 1px);
+ border-top-right-radius: calc(.25rem - 1px)
+}
+
+.card-img-bottom {
+ width: 100%;
+ border-bottom-right-radius: calc(.25rem - 1px);
+ border-bottom-left-radius: calc(.25rem - 1px)
+}
+
+.card-deck {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column
+}
+
+.card-deck .card {
+ margin-bottom: 15px
+}
+
+@media (min-width:576px) {
+ .card-deck {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ margin-right: -15px;
+ margin-left: -15px
+ }
+ .card-deck .card {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 0%;
+ flex: 1 0 0%;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ margin-right: 15px;
+ margin-bottom: 0;
+ margin-left: 15px
+ }
+}
+
+.card-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column
+}
+
+.card-group>.card {
+ margin-bottom: 15px
+}
+
+@media (min-width:576px) {
+ .card-group {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap
+ }
+ .card-group>.card {
+ -webkit-box-flex: 1;
+ -ms-flex: 1 0 0%;
+ flex: 1 0 0%;
+ margin-bottom: 0
+ }
+ .card-group>.card+.card {
+ margin-left: 0;
+ border-left: 0
+ }
+ .card-group>.card:first-child {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0
+ }
+ .card-group>.card:first-child .card-header,
+ .card-group>.card:first-child .card-img-top {
+ border-top-right-radius: 0
+ }
+ .card-group>.card:first-child .card-footer,
+ .card-group>.card:first-child .card-img-bottom {
+ border-bottom-right-radius: 0
+ }
+ .card-group>.card:last-child {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0
+ }
+ .card-group>.card:last-child .card-header,
+ .card-group>.card:last-child .card-img-top {
+ border-top-left-radius: 0
+ }
+ .card-group>.card:last-child .card-footer,
+ .card-group>.card:last-child .card-img-bottom {
+ border-bottom-left-radius: 0
+ }
+ .card-group>.card:only-child {
+ border-radius: .25rem
+ }
+ .card-group>.card:only-child .card-header,
+ .card-group>.card:only-child .card-img-top {
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+ }
+ .card-group>.card:only-child .card-footer,
+ .card-group>.card:only-child .card-img-bottom {
+ border-bottom-right-radius: .25rem;
+ border-bottom-left-radius: .25rem
+ }
+ .card-group>.card:not(:first-child):not(:last-child):not(:only-child) {
+ border-radius: 0
+ }
+ .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
+ .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,
+ .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
+ .card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
+ border-radius: 0
+ }
+}
+
+.card-columns .card {
+ margin-bottom: .75rem
+}
+
+@media (min-width:576px) {
+ .card-columns {
+ -webkit-column-count: 3;
+ -moz-column-count: 3;
+ column-count: 3;
+ -webkit-column-gap: 1.25rem;
+ -moz-column-gap: 1.25rem;
+ column-gap: 1.25rem
+ }
+ .card-columns .card {
+ display: inline-block;
+ width: 100%
+ }
+}
+
+.breadcrumb {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding: .75rem 1rem;
+ margin-bottom: 1rem;
+ list-style: none;
+ background-color: #e9ecef;
+ border-radius: .25rem
+}
+
+.breadcrumb-item+.breadcrumb-item::before {
+ display: inline-block;
+ padding-right: .5rem;
+ padding-left: .5rem;
+ color: #6c757d;
+ content: "/"
+}
+
+.breadcrumb-item+.breadcrumb-item:hover::before {
+ text-decoration: underline
+}
+
+.breadcrumb-item+.breadcrumb-item:hover::before {
+ text-decoration: none
+}
+
+.breadcrumb-item.active {
+ color: #6c757d
+}
+
+.pagination {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ padding-left: 0;
+ list-style: none;
+ border-radius: .25rem
+}
+
+.page-link {
+ position: relative;
+ display: block;
+ padding: .5rem .75rem;
+ margin-left: -1px;
+ line-height: 1.25;
+ color: #007bff;
+ background-color: #fff;
+ border: 1px solid #dee2e6
+}
+
+.page-link:hover {
+ color: #0056b3;
+ text-decoration: none;
+ background-color: #e9ecef;
+ border-color: #dee2e6
+}
+
+.page-link:focus {
+ z-index: 2;
+ outline: 0;
+ box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
+}
+
+.page-link:not(:disabled):not(.disabled) {
+ cursor: pointer
+}
+
+.page-item:first-child .page-link {
+ margin-left: 0;
+ border-top-left-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.page-item:last-child .page-link {
+ border-top-right-radius: .25rem;
+ border-bottom-right-radius: .25rem
+}
+
+.page-item.active .page-link {
+ z-index: 1;
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.page-item.disabled .page-link {
+ color: #6c757d;
+ pointer-events: none;
+ cursor: auto;
+ background-color: #fff;
+ border-color: #dee2e6
+}
+
+.pagination-lg .page-link {
+ padding: .75rem 1.5rem;
+ font-size: 1.25rem;
+ line-height: 1.5
+}
+
+.pagination-lg .page-item:first-child .page-link {
+ border-top-left-radius: .3rem;
+ border-bottom-left-radius: .3rem
+}
+
+.pagination-lg .page-item:last-child .page-link {
+ border-top-right-radius: .3rem;
+ border-bottom-right-radius: .3rem
+}
+
+.pagination-sm .page-link {
+ padding: .25rem .5rem;
+ font-size: .875rem;
+ line-height: 1.5
+}
+
+.pagination-sm .page-item:first-child .page-link {
+ border-top-left-radius: .2rem;
+ border-bottom-left-radius: .2rem
+}
+
+.pagination-sm .page-item:last-child .page-link {
+ border-top-right-radius: .2rem;
+ border-bottom-right-radius: .2rem
+}
+
+.badge {
+ display: inline-block;
+ padding: .25em .4em;
+ font-size: 75%;
+ font-weight: 700;
+ line-height: 1;
+ text-align: center;
+ white-space: nowrap;
+ vertical-align: baseline;
+ border-radius: .25rem
+}
+
+.badge:empty {
+ display: none
+}
+
+.btn .badge {
+ position: relative;
+ top: -1px
+}
+
+.badge-pill {
+ padding-right: .6em;
+ padding-left: .6em;
+ border-radius: 10rem
+}
+
+.badge-primary {
+ color: #fff;
+ background-color: #007bff
+}
+
+.badge-primary[href]:focus,
+.badge-primary[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #0062cc
+}
+
+.badge-secondary {
+ color: #fff;
+ background-color: #6c757d
+}
+
+.badge-secondary[href]:focus,
+.badge-secondary[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #545b62
+}
+
+.badge-success {
+ color: #fff;
+ background-color: #28a745
+}
+
+.badge-success[href]:focus,
+.badge-success[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #1e7e34
+}
+
+.badge-info {
+ color: #fff;
+ background-color: #17a2b8
+}
+
+.badge-info[href]:focus,
+.badge-info[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #117a8b
+}
+
+.badge-warning {
+ color: #212529;
+ background-color: #ffc107
+}
+
+.badge-warning[href]:focus,
+.badge-warning[href]:hover {
+ color: #212529;
+ text-decoration: none;
+ background-color: #d39e00
+}
+
+.badge-danger {
+ color: #fff;
+ background-color: #dc3545
+}
+
+.badge-danger[href]:focus,
+.badge-danger[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #bd2130
+}
+
+.badge-light {
+ color: #212529;
+ background-color: #f8f9fa
+}
+
+.badge-light[href]:focus,
+.badge-light[href]:hover {
+ color: #212529;
+ text-decoration: none;
+ background-color: #dae0e5
+}
+
+.badge-dark {
+ color: #fff;
+ background-color: #343a40
+}
+
+.badge-dark[href]:focus,
+.badge-dark[href]:hover {
+ color: #fff;
+ text-decoration: none;
+ background-color: #1d2124
+}
+
+.jumbotron {
+ padding: 2rem 1rem;
+ margin-bottom: 2rem;
+ background-color: #e9ecef;
+ border-radius: .3rem
+}
+
+@media (min-width:576px) {
+ .jumbotron {
+ padding: 4rem 2rem
+ }
+}
+
+.jumbotron-fluid {
+ padding-right: 0;
+ padding-left: 0;
+ border-radius: 0
+}
+
+.alert {
+ position: relative;
+ padding: .75rem 1.25rem;
+ margin-bottom: 1rem;
+ border: 1px solid transparent;
+ border-radius: .25rem
+}
+
+.alert-heading {
+ color: inherit
+}
+
+.alert-link {
+ font-weight: 700
+}
+
+.alert-dismissible {
+ padding-right: 4rem
+}
+
+.alert-dismissible .close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: .75rem 1.25rem;
+ color: inherit
+}
+
+.alert-primary {
+ color: #004085;
+ background-color: #cce5ff;
+ border-color: #b8daff
+}
+
+.alert-primary hr {
+ border-top-color: #9fcdff
+}
+
+.alert-primary .alert-link {
+ color: #002752
+}
+
+.alert-secondary {
+ color: #383d41;
+ background-color: #e2e3e5;
+ border-color: #d6d8db
+}
+
+.alert-secondary hr {
+ border-top-color: #c8cbcf
+}
+
+.alert-secondary .alert-link {
+ color: #202326
+}
+
+.alert-success {
+ color: #155724;
+ background-color: #d4edda;
+ border-color: #c3e6cb
+}
+
+.alert-success hr {
+ border-top-color: #b1dfbb
+}
+
+.alert-success .alert-link {
+ color: #0b2e13
+}
+
+.alert-info {
+ color: #0c5460;
+ background-color: #d1ecf1;
+ border-color: #bee5eb
+}
+
+.alert-info hr {
+ border-top-color: #abdde5
+}
+
+.alert-info .alert-link {
+ color: #062c33
+}
+
+.alert-warning {
+ color: #856404;
+ background-color: #fff3cd;
+ border-color: #ffeeba
+}
+
+.alert-warning hr {
+ border-top-color: #ffe8a1
+}
+
+.alert-warning .alert-link {
+ color: #533f03
+}
+
+.alert-danger {
+ color: #721c24;
+ background-color: #f8d7da;
+ border-color: #f5c6cb
+}
+
+.alert-danger hr {
+ border-top-color: #f1b0b7
+}
+
+.alert-danger .alert-link {
+ color: #491217
+}
+
+.alert-light {
+ color: #818182;
+ background-color: #fefefe;
+ border-color: #fdfdfe
+}
+
+.alert-light hr {
+ border-top-color: #ececf6
+}
+
+.alert-light .alert-link {
+ color: #686868
+}
+
+.alert-dark {
+ color: #1b1e21;
+ background-color: #d6d8d9;
+ border-color: #c6c8ca
+}
+
+.alert-dark hr {
+ border-top-color: #b9bbbe
+}
+
+.alert-dark .alert-link {
+ color: #040505
+}
+
+@-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0
+ }
+ to {
+ background-position: 0 0
+ }
+}
+
+@keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0
+ }
+ to {
+ background-position: 0 0
+ }
+}
+
+.progress {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ height: 1rem;
+ overflow: hidden;
+ font-size: .75rem;
+ background-color: #e9ecef;
+ border-radius: .25rem
+}
+
+.progress-bar {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ color: #fff;
+ text-align: center;
+ background-color: #007bff;
+ transition: width .6s ease
+}
+
+.progress-bar-striped {
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
+ background-size: 1rem 1rem
+}
+
+.progress-bar-animated {
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
+ animation: progress-bar-stripes 1s linear infinite
+}
+
+.media {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start
+}
+
+.media-body {
+ -webkit-box-flex: 1;
+ -ms-flex: 1;
+ flex: 1
+}
+
+.list-group {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0
+}
+
+.list-group-item-action {
+ width: 100%;
+ color: #495057;
+ text-align: inherit
+}
+
+.list-group-item-action:focus,
+.list-group-item-action:hover {
+ color: #495057;
+ text-decoration: none;
+ background-color: #f8f9fa
+}
+
+.list-group-item-action:active {
+ color: #212529;
+ background-color: #e9ecef
+}
+
+.list-group-item {
+ position: relative;
+ display: block;
+ padding: .75rem 1.25rem;
+ margin-bottom: -1px;
+ background-color: #fff;
+ border: 1px solid rgba(0, 0, 0, .125)
+}
+
+.list-group-item:first-child {
+ border-top-left-radius: .25rem;
+ border-top-right-radius: .25rem
+}
+
+.list-group-item:last-child {
+ margin-bottom: 0;
+ border-bottom-right-radius: .25rem;
+ border-bottom-left-radius: .25rem
+}
+
+.list-group-item:focus,
+.list-group-item:hover {
+ z-index: 1;
+ text-decoration: none
+}
+
+.list-group-item.disabled,
+.list-group-item:disabled {
+ color: #6c757d;
+ background-color: #fff
+}
+
+.list-group-item.active {
+ z-index: 2;
+ color: #fff;
+ background-color: #007bff;
+ border-color: #007bff
+}
+
+.list-group-flush .list-group-item {
+ border-right: 0;
+ border-left: 0;
+ border-radius: 0
+}
+
+.list-group-flush:first-child .list-group-item:first-child {
+ border-top: 0
+}
+
+.list-group-flush:last-child .list-group-item:last-child {
+ border-bottom: 0
+}
+
+.list-group-item-primary {
+ color: #004085;
+ background-color: #b8daff
+}
+
+.list-group-item-primary.list-group-item-action:focus,
+.list-group-item-primary.list-group-item-action:hover {
+ color: #004085;
+ background-color: #9fcdff
+}
+
+.list-group-item-primary.list-group-item-action.active {
+ color: #fff;
+ background-color: #004085;
+ border-color: #004085
+}
+
+.list-group-item-secondary {
+ color: #383d41;
+ background-color: #d6d8db
+}
+
+.list-group-item-secondary.list-group-item-action:focus,
+.list-group-item-secondary.list-group-item-action:hover {
+ color: #383d41;
+ background-color: #c8cbcf
+}
+
+.list-group-item-secondary.list-group-item-action.active {
+ color: #fff;
+ background-color: #383d41;
+ border-color: #383d41
+}
+
+.list-group-item-success {
+ color: #155724;
+ background-color: #c3e6cb
+}
+
+.list-group-item-success.list-group-item-action:focus,
+.list-group-item-success.list-group-item-action:hover {
+ color: #155724;
+ background-color: #b1dfbb
+}
+
+.list-group-item-success.list-group-item-action.active {
+ color: #fff;
+ background-color: #155724;
+ border-color: #155724
+}
+
+.list-group-item-info {
+ color: #0c5460;
+ background-color: #bee5eb
+}
+
+.list-group-item-info.list-group-item-action:focus,
+.list-group-item-info.list-group-item-action:hover {
+ color: #0c5460;
+ background-color: #abdde5
+}
+
+.list-group-item-info.list-group-item-action.active {
+ color: #fff;
+ background-color: #0c5460;
+ border-color: #0c5460
+}
+
+.list-group-item-warning {
+ color: #856404;
+ background-color: #ffeeba
+}
+
+.list-group-item-warning.list-group-item-action:focus,
+.list-group-item-warning.list-group-item-action:hover {
+ color: #856404;
+ background-color: #ffe8a1
+}
+
+.list-group-item-warning.list-group-item-action.active {
+ color: #fff;
+ background-color: #856404;
+ border-color: #856404
+}
+
+.list-group-item-danger {
+ color: #721c24;
+ background-color: #f5c6cb
+}
+
+.list-group-item-danger.list-group-item-action:focus,
+.list-group-item-danger.list-group-item-action:hover {
+ color: #721c24;
+ background-color: #f1b0b7
+}
+
+.list-group-item-danger.list-group-item-action.active {
+ color: #fff;
+ background-color: #721c24;
+ border-color: #721c24
+}
+
+.list-group-item-light {
+ color: #818182;
+ background-color: #fdfdfe
+}
+
+.list-group-item-light.list-group-item-action:focus,
+.list-group-item-light.list-group-item-action:hover {
+ color: #818182;
+ background-color: #ececf6
+}
+
+.list-group-item-light.list-group-item-action.active {
+ color: #fff;
+ background-color: #818182;
+ border-color: #818182
+}
+
+.list-group-item-dark {
+ color: #1b1e21;
+ background-color: #c6c8ca
+}
+
+.list-group-item-dark.list-group-item-action:focus,
+.list-group-item-dark.list-group-item-action:hover {
+ color: #1b1e21;
+ background-color: #b9bbbe
+}
+
+.list-group-item-dark.list-group-item-action.active {
+ color: #fff;
+ background-color: #1b1e21;
+ border-color: #1b1e21
+}
+
+.close {
+ float: right;
+ font-size: 1.5rem;
+ font-weight: 700;
+ line-height: 1;
+ color: #000;
+ text-shadow: 0 1px 0 #fff;
+ opacity: .5
+}
+
+.close:focus,
+.close:hover {
+ color: #000;
+ text-decoration: none;
+ opacity: .75
+}
+
+.close:not(:disabled):not(.disabled) {
+ cursor: pointer
+}
+
+button.close {
+ padding: 0;
+ background-color: transparent;
+ border: 0;
+ -webkit-appearance: none
+}
+
+.modal-open {
+ overflow: hidden
+}
+
+.modal {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1050;
+ display: none;
+ overflow: hidden;
+ outline: 0
+}
+
+.modal-open .modal {
+ overflow-x: hidden;
+ overflow-y: auto
+}
+
+.modal-dialog {
+ position: relative;
+ width: auto;
+ margin: .5rem;
+ pointer-events: none
+}
+
+.modal.fade .modal-dialog {
+ transition: -webkit-transform .3s ease-out;
+ transition: transform .3s ease-out;
+ transition: transform .3s ease-out, -webkit-transform .3s ease-out;
+ -webkit-transform: translate(0, -25%);
+ transform: translate(0, -25%)
+}
+
+.modal.show .modal-dialog {
+ -webkit-transform: translate(0, 0);
+ transform: translate(0, 0)
+}
+
+.modal-dialog-centered {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: calc(100% - (.5rem * 2))
+}
+
+.modal-content {
+ position: relative;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+ pointer-events: auto;
+ background-color: #fff;
+ background-clip: padding-box;
+ border-radius: .3rem;
+ outline: 0
+}
+
+.modal-backdrop {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 999999;
+ background-color: #000
+}
+
+.modal-backdrop.fade {
+ opacity: 0
+}
+
+.modal-backdrop.show {
+ opacity: .5
+}
+
+.modal-header {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: justify;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ padding: 1rem;
+ border-bottom: 1px solid #e9ecef;
+ border-top-left-radius: .3rem;
+ border-top-right-radius: .3rem
+}
+
+.modal-header .close {
+ padding: 1rem;
+ margin: -1rem -1rem -1rem auto
+}
+
+.modal-title {
+ margin-bottom: 0;
+ line-height: 1.5
+}
+
+.modal-body {
+ position: relative;
+ -webkit-box-flex: 1;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1rem
+}
+
+.modal-footer {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ padding: 1rem;
+ border-top: 1px solid #e9ecef
+}
+
+.modal-footer>:not(:first-child) {
+ margin-left: .25rem
+}
+
+.modal-footer>:not(:last-child) {
+ margin-right: .25rem
+}
+
+.modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll
+}
+
+@media (min-width:576px) {
+ .modal-dialog {
+ max-width: 500px;
+ margin: 1.75rem auto
+ }
+ .modal-dialog-centered {
+ min-height: calc(100% - (1.75rem * 2))
+ }
+ .modal-sm {
+ max-width: 300px
+ }
+}
+
+@media (min-width:992px) {
+ .modal-lg {
+ max-width: 800px
+ }
+}
+
+.tooltip {
+ position: absolute;
+ z-index: 1070;
+ display: block;
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: .875rem;
+ word-wrap: break-word;
+ opacity: 0
+}
+
+.tooltip.show {
+ opacity: .9
+}
+
+.tooltip .arrow {
+ position: absolute;
+ display: block;
+ width: .8rem;
+ height: .4rem
+}
+
+.tooltip .arrow::before {
+ position: absolute;
+ content: "";
+ border-color: transparent;
+ border-style: solid
+}
+
+.bs-tooltip-auto[x-placement^=top],
+.bs-tooltip-top {
+ padding: .4rem 0
+}
+
+.bs-tooltip-auto[x-placement^=top] .arrow,
+.bs-tooltip-top .arrow {
+ bottom: 0
+}
+
+.bs-tooltip-auto[x-placement^=top] .arrow::before,
+.bs-tooltip-top .arrow::before {
+ top: 0;
+ border-width: .4rem .4rem 0;
+ border-top-color: #000
+}
+
+.bs-tooltip-auto[x-placement^=right],
+.bs-tooltip-right {
+ padding: 0 .4rem
+}
+
+.bs-tooltip-auto[x-placement^=right] .arrow,
+.bs-tooltip-right .arrow {
+ left: 0;
+ width: .4rem;
+ height: .8rem
+}
+
+.bs-tooltip-auto[x-placement^=right] .arrow::before,
+.bs-tooltip-right .arrow::before {
+ right: 0;
+ border-width: .4rem .4rem .4rem 0;
+ border-right-color: #000
+}
+
+.bs-tooltip-auto[x-placement^=bottom],
+.bs-tooltip-bottom {
+ padding: .4rem 0
+}
+
+.bs-tooltip-auto[x-placement^=bottom] .arrow,
+.bs-tooltip-bottom .arrow {
+ top: 0
+}
+
+.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
+.bs-tooltip-bottom .arrow::before {
+ bottom: 0;
+ border-width: 0 .4rem .4rem;
+ border-bottom-color: #000
+}
+
+.bs-tooltip-auto[x-placement^=left],
+.bs-tooltip-left {
+ padding: 0 .4rem
+}
+
+.bs-tooltip-auto[x-placement^=left] .arrow,
+.bs-tooltip-left .arrow {
+ right: 0;
+ width: .4rem;
+ height: .8rem
+}
+
+.bs-tooltip-auto[x-placement^=left] .arrow::before,
+.bs-tooltip-left .arrow::before {
+ left: 0;
+ border-width: .4rem 0 .4rem .4rem;
+ border-left-color: #000
+}
+
+.tooltip-inner {
+ max-width: 200px;
+ padding: .25rem .5rem;
+ color: #fff;
+ text-align: center;
+ background-color: #000;
+ border-radius: .25rem
+}
+
+.popover {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ display: block;
+ max-width: 276px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ font-style: normal;
+ font-weight: 400;
+ line-height: 1.5;
+ text-align: left;
+ text-align: start;
+ text-decoration: none;
+ text-shadow: none;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: .875rem;
+ word-wrap: break-word;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, .2);
+ border-radius: .3rem
+}
+
+.popover .arrow {
+ position: absolute;
+ display: block;
+ width: 1rem;
+ height: .5rem;
+ margin: 0 .3rem
+}
+
+.popover .arrow::after,
+.popover .arrow::before {
+ position: absolute;
+ display: block;
+ content: "";
+ border-color: transparent;
+ border-style: solid
+}
+
+.bs-popover-auto[x-placement^=top],
+.bs-popover-top {
+ margin-bottom: .5rem
+}
+
+.bs-popover-auto[x-placement^=top] .arrow,
+.bs-popover-top .arrow {
+ bottom: calc((.5rem + 1px) * -1)
+}
+
+.bs-popover-auto[x-placement^=top] .arrow::after,
+.bs-popover-auto[x-placement^=top] .arrow::before,
+.bs-popover-top .arrow::after,
+.bs-popover-top .arrow::before {
+ border-width: .5rem .5rem 0
+}
+
+.bs-popover-auto[x-placement^=top] .arrow::before,
+.bs-popover-top .arrow::before {
+ bottom: 0;
+ border-top-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-auto[x-placement^=top] .arrow::after,
+.bs-popover-top .arrow::after {
+ bottom: 1px;
+ border-top-color: #fff
+}
+
+.bs-popover-auto[x-placement^=right],
+.bs-popover-right {
+ margin-left: .5rem
+}
+
+.bs-popover-auto[x-placement^=right] .arrow,
+.bs-popover-right .arrow {
+ left: calc((.5rem + 1px) * -1);
+ width: .5rem;
+ height: 1rem;
+ margin: .3rem 0
+}
+
+.bs-popover-auto[x-placement^=right] .arrow::after,
+.bs-popover-auto[x-placement^=right] .arrow::before,
+.bs-popover-right .arrow::after,
+.bs-popover-right .arrow::before {
+ border-width: .5rem .5rem .5rem 0
+}
+
+.bs-popover-auto[x-placement^=right] .arrow::before,
+.bs-popover-right .arrow::before {
+ left: 0;
+ border-right-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-auto[x-placement^=right] .arrow::after,
+.bs-popover-right .arrow::after {
+ left: 1px;
+ border-right-color: #fff
+}
+
+.bs-popover-auto[x-placement^=bottom],
+.bs-popover-bottom {
+ margin-top: .5rem
+}
+
+.bs-popover-auto[x-placement^=bottom] .arrow,
+.bs-popover-bottom .arrow {
+ top: calc((.5rem + 1px) * -1)
+}
+
+.bs-popover-auto[x-placement^=bottom] .arrow::after,
+.bs-popover-auto[x-placement^=bottom] .arrow::before,
+.bs-popover-bottom .arrow::after,
+.bs-popover-bottom .arrow::before {
+ border-width: 0 .5rem .5rem .5rem
+}
+
+.bs-popover-auto[x-placement^=bottom] .arrow::before,
+.bs-popover-bottom .arrow::before {
+ top: 0;
+ border-bottom-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-auto[x-placement^=bottom] .arrow::after,
+.bs-popover-bottom .arrow::after {
+ top: 1px;
+ border-bottom-color: #fff
+}
+
+.bs-popover-auto[x-placement^=bottom] .popover-header::before,
+.bs-popover-bottom .popover-header::before {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ display: block;
+ width: 1rem;
+ margin-left: -.5rem;
+ content: "";
+ border-bottom: 1px solid #f7f7f7
+}
+
+.bs-popover-auto[x-placement^=left],
+.bs-popover-left {
+ margin-right: .5rem
+}
+
+.bs-popover-auto[x-placement^=left] .arrow,
+.bs-popover-left .arrow {
+ right: calc((.5rem + 1px) * -1);
+ width: .5rem;
+ height: 1rem;
+ margin: .3rem 0
+}
+
+.bs-popover-auto[x-placement^=left] .arrow::after,
+.bs-popover-auto[x-placement^=left] .arrow::before,
+.bs-popover-left .arrow::after,
+.bs-popover-left .arrow::before {
+ border-width: .5rem 0 .5rem .5rem
+}
+
+.bs-popover-auto[x-placement^=left] .arrow::before,
+.bs-popover-left .arrow::before {
+ right: 0;
+ border-left-color: rgba(0, 0, 0, .25)
+}
+
+.bs-popover-auto[x-placement^=left] .arrow::after,
+.bs-popover-left .arrow::after {
+ right: 1px;
+ border-left-color: #fff
+}
+
+.popover-header {
+ padding: .5rem .75rem;
+ margin-bottom: 0;
+ font-size: 1rem;
+ color: inherit;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-top-left-radius: calc(.3rem - 1px);
+ border-top-right-radius: calc(.3rem - 1px)
+}
+
+.popover-header:empty {
+ display: none
+}
+
+.popover-body {
+ padding: .5rem .75rem;
+ color: #212529
+}
+
+.carousel {
+ position: relative
+}
+
+.carousel-inner {
+ position: relative;
+ width: 100%;
+ overflow: hidden
+}
+
+.carousel-item {
+ position: relative;
+ display: none;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ width: 100%;
+ transition: -webkit-transform .6s ease;
+ transition: transform .6s ease;
+ transition: transform .6s ease, -webkit-transform .6s ease;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-perspective: 1000px;
+ perspective: 1000px
+}
+
+.carousel-item-next,
+.carousel-item-prev,
+.carousel-item.active {
+ display: block
+}
+
+.carousel-item-next,
+.carousel-item-prev {
+ position: absolute;
+ top: 0
+}
+
+.carousel-item-next.carousel-item-left,
+.carousel-item-prev.carousel-item-right {
+ -webkit-transform: translateX(0);
+ transform: translateX(0)
+}
+
+@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
+ .carousel-item-next.carousel-item-left,
+ .carousel-item-prev.carousel-item-right {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0)
+ }
+}
+
+.active.carousel-item-right,
+.carousel-item-next {
+ -webkit-transform: translateX(100%);
+ transform: translateX(100%)
+}
+
+@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
+ .active.carousel-item-right,
+ .carousel-item-next {
+ -webkit-transform: translate3d(100%, 0, 0);
+ transform: translate3d(100%, 0, 0)
+ }
+}
+
+.active.carousel-item-left,
+.carousel-item-prev {
+ -webkit-transform: translateX(-100%);
+ transform: translateX(-100%)
+}
+
+@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
+ .active.carousel-item-left,
+ .carousel-item-prev {
+ -webkit-transform: translate3d(-100%, 0, 0);
+ transform: translate3d(-100%, 0, 0)
+ }
+}
+
+.carousel-control-next,
+.carousel-control-prev {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ 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;
+ width: 15%;
+ color: #fff;
+ text-align: center;
+ opacity: .5
+}
+
+.carousel-control-next:focus,
+.carousel-control-next:hover,
+.carousel-control-prev:focus,
+.carousel-control-prev:hover {
+ color: #fff;
+ text-decoration: none;
+ outline: 0;
+ opacity: .9
+}
+
+.carousel-control-prev {
+ left: 0
+}
+
+.carousel-control-next {
+ right: 0
+}
+
+.carousel-control-next-icon,
+.carousel-control-prev-icon {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ background: transparent no-repeat center center;
+ background-size: 100% 100%
+}
+
+.carousel-control-prev-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
+}
+
+.carousel-control-next-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
+}
+
+.carousel-indicators {
+ position: absolute;
+ right: 0;
+ bottom: 10px;
+ left: 0;
+ z-index: 15;
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding-left: 0;
+ margin-right: 15%;
+ margin-left: 15%;
+ list-style: none
+}
+
+.carousel-indicators li {
+ position: relative;
+ -webkit-box-flex: 0;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ width: 30px;
+ height: 3px;
+ margin-right: 3px;
+ margin-left: 3px;
+ text-indent: -999px;
+ background-color: rgba(255, 255, 255, .5)
+}
+
+.carousel-indicators li::before {
+ position: absolute;
+ top: -10px;
+ left: 0;
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+ content: ""
+}
+
+.carousel-indicators li::after {
+ position: absolute;
+ bottom: -10px;
+ left: 0;
+ display: inline-block;
+ width: 100%;
+ height: 10px;
+ content: ""
+}
+
+.carousel-indicators .active {
+ background-color: #fff
+}
+
+.carousel-caption {
+ position: absolute;
+ right: 15%;
+ bottom: 20px;
+ left: 15%;
+ z-index: 10;
+ padding-top: 20px;
+ padding-bottom: 20px;
+ color: #fff;
+ text-align: center
+}
+
+.align-baseline {
+ vertical-align: baseline!important
+}
+
+.align-top {
+ vertical-align: top!important
+}
+
+.align-middle {
+ vertical-align: middle!important
+}
+
+.align-bottom {
+ vertical-align: bottom!important
+}
+
+.align-text-bottom {
+ vertical-align: text-bottom!important
+}
+
+.align-text-top {
+ vertical-align: text-top!important
+}
+
+.bg-primary {
+ background-color: #007bff!important
+}
+
+a.bg-primary:focus,
+a.bg-primary:hover,
+button.bg-primary:focus,
+button.bg-primary:hover {
+ background-color: #0062cc!important
+}
+
+.bg-secondary {
+ background-color: #6c757d!important
+}
+
+a.bg-secondary:focus,
+a.bg-secondary:hover,
+button.bg-secondary:focus,
+button.bg-secondary:hover {
+ background-color: #545b62!important
+}
+
+.bg-success {
+ background-color: #28a745!important
+}
+
+a.bg-success:focus,
+a.bg-success:hover,
+button.bg-success:focus,
+button.bg-success:hover {
+ background-color: #1e7e34!important
+}
+
+.bg-info {
+ background-color: #17a2b8!important
+}
+
+a.bg-info:focus,
+a.bg-info:hover,
+button.bg-info:focus,
+button.bg-info:hover {
+ background-color: #117a8b!important
+}
+
+.bg-warning {
+ background-color: #ffc107!important
+}
+
+a.bg-warning:focus,
+a.bg-warning:hover,
+button.bg-warning:focus,
+button.bg-warning:hover {
+ background-color: #d39e00!important
+}
+
+.bg-danger {
+ background-color: #dc3545!important
+}
+
+a.bg-danger:focus,
+a.bg-danger:hover,
+button.bg-danger:focus,
+button.bg-danger:hover {
+ background-color: #bd2130!important
+}
+
+.bg-light {
+ background-color: #f8f9fa!important
+}
+
+a.bg-light:focus,
+a.bg-light:hover,
+button.bg-light:focus,
+button.bg-light:hover {
+ background-color: #dae0e5!important
+}
+
+.bg-dark {
+ background-color: #343a40!important
+}
+
+a.bg-dark:focus,
+a.bg-dark:hover,
+button.bg-dark:focus,
+button.bg-dark:hover {
+ background-color: #1d2124!important
+}
+
+.bg-white {
+ background-color: #fff!important
+}
+
+.bg-transparent {
+ background-color: transparent!important
+}
+
+.border {
+ border: 1px solid #dee2e6!important
+}
+
+.border-top {
+ border-top: 1px solid #dee2e6!important
+}
+
+.border-right {
+ border-right: 1px solid #dee2e6!important
+}
+
+.border-bottom {
+ border-bottom: 1px solid #dee2e6!important
+}
+
+.border-left {
+ border-left: 1px solid #dee2e6!important
+}
+
+.border-0 {
+ border: 0!important
+}
+
+.border-top-0 {
+ border-top: 0!important
+}
+
+.border-right-0 {
+ border-right: 0!important
+}
+
+.border-bottom-0 {
+ border-bottom: 0!important
+}
+
+.border-left-0 {
+ border-left: 0!important
+}
+
+.border-primary {
+ border-color: #007bff!important
+}
+
+.border-secondary {
+ border-color: #6c757d!important
+}
+
+.border-success {
+ border-color: #28a745!important
+}
+
+.border-info {
+ border-color: #17a2b8!important
+}
+
+.border-warning {
+ border-color: #ffc107!important
+}
+
+.border-danger {
+ border-color: #dc3545!important
+}
+
+.border-light {
+ border-color: #f8f9fa!important
+}
+
+.border-dark {
+ border-color: #343a40!important
+}
+
+.border-white {
+ border-color: #fff!important
+}
+
+.rounded {
+ border-radius: .25rem!important
+}
+
+.rounded-top {
+ border-top-left-radius: .25rem!important;
+ border-top-right-radius: .25rem!important
+}
+
+.rounded-right {
+ border-top-right-radius: .25rem!important;
+ border-bottom-right-radius: .25rem!important
+}
+
+.rounded-bottom {
+ border-bottom-right-radius: .25rem!important;
+ border-bottom-left-radius: .25rem!important
+}
+
+.rounded-left {
+ border-top-left-radius: .25rem!important;
+ border-bottom-left-radius: .25rem!important
+}
+
+.rounded-circle {
+ border-radius: 50%!important
+}
+
+.rounded-0 {
+ border-radius: 0!important
+}
+
+.clearfix::after {
+ display: block;
+ clear: both;
+ content: ""
+}
+
+.d-none {
+ display: none!important
+}
+
+.d-inline {
+ display: inline!important
+}
+
+.d-inline-block {
+ display: inline-block!important
+}
+
+.d-block {
+ display: block!important
+}
+
+.d-table {
+ display: table!important
+}
+
+.d-table-row {
+ display: table-row!important
+}
+
+.d-table-cell {
+ display: table-cell!important
+}
+
+.d-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+}
+
+.d-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+}
+
+@media (min-width:576px) {
+ .d-sm-none {
+ display: none!important
+ }
+ .d-sm-inline {
+ display: inline!important
+ }
+ .d-sm-inline-block {
+ display: inline-block!important
+ }
+ .d-sm-block {
+ display: block!important
+ }
+ .d-sm-table {
+ display: table!important
+ }
+ .d-sm-table-row {
+ display: table-row!important
+ }
+ .d-sm-table-cell {
+ display: table-cell!important
+ }
+ .d-sm-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+ }
+ .d-sm-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+ }
+}
+
+@media (min-width:768px) {
+ .d-md-none {
+ display: none!important
+ }
+ .d-md-inline {
+ display: inline!important
+ }
+ .d-md-inline-block {
+ display: inline-block!important
+ }
+ .d-md-block {
+ display: block!important
+ }
+ .d-md-table {
+ display: table!important
+ }
+ .d-md-table-row {
+ display: table-row!important
+ }
+ .d-md-table-cell {
+ display: table-cell!important
+ }
+ .d-md-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+ }
+ .d-md-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+ }
+}
+
+@media (min-width:992px) {
+ .d-lg-none {
+ display: none!important
+ }
+ .d-lg-inline {
+ display: inline!important
+ }
+ .d-lg-inline-block {
+ display: inline-block!important
+ }
+ .d-lg-block {
+ display: block!important
+ }
+ .d-lg-table {
+ display: table!important
+ }
+ .d-lg-table-row {
+ display: table-row!important
+ }
+ .d-lg-table-cell {
+ display: table-cell!important
+ }
+ .d-lg-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+ }
+ .d-lg-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+ }
+}
+
+@media (min-width:1200px) {
+ .d-xl-none {
+ display: none!important
+ }
+ .d-xl-inline {
+ display: inline!important
+ }
+ .d-xl-inline-block {
+ display: inline-block!important
+ }
+ .d-xl-block {
+ display: block!important
+ }
+ .d-xl-table {
+ display: table!important
+ }
+ .d-xl-table-row {
+ display: table-row!important
+ }
+ .d-xl-table-cell {
+ display: table-cell!important
+ }
+ .d-xl-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+ }
+ .d-xl-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+ }
+}
+
+@media print {
+ .d-print-none {
+ display: none!important
+ }
+ .d-print-inline {
+ display: inline!important
+ }
+ .d-print-inline-block {
+ display: inline-block!important
+ }
+ .d-print-block {
+ display: block!important
+ }
+ .d-print-table {
+ display: table!important
+ }
+ .d-print-table-row {
+ display: table-row!important
+ }
+ .d-print-table-cell {
+ display: table-cell!important
+ }
+ .d-print-flex {
+ display: -webkit-box!important;
+ display: -ms-flexbox!important;
+ display: flex!important
+ }
+ .d-print-inline-flex {
+ display: -webkit-inline-box!important;
+ display: -ms-inline-flexbox!important;
+ display: inline-flex!important
+ }
+}
+
+.embed-responsive {
+ position: relative;
+ display: block;
+ width: 100%;
+ padding: 0;
+ overflow: hidden
+}
+
+.embed-responsive::before {
+ display: block;
+ content: ""
+}
+
+.embed-responsive .embed-responsive-item,
+.embed-responsive embed,
+.embed-responsive iframe,
+.embed-responsive object,
+.embed-responsive video {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 0
+}
+
+.embed-responsive-21by9::before {
+ padding-top: 42.857143%
+}
+
+.embed-responsive-16by9::before {
+ padding-top: 56.25%
+}
+
+.embed-responsive-4by3::before {
+ padding-top: 75%
+}
+
+.embed-responsive-1by1::before {
+ padding-top: 100%
+}
+
+.flex-row {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: row!important;
+ flex-direction: row!important
+}
+
+.flex-column {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: column!important;
+ flex-direction: column!important
+}
+
+.flex-row-reverse {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: row-reverse!important;
+ flex-direction: row-reverse!important
+}
+
+.flex-column-reverse {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: column-reverse!important;
+ flex-direction: column-reverse!important
+}
+
+.flex-wrap {
+ -ms-flex-wrap: wrap!important;
+ flex-wrap: wrap!important
+}
+
+.flex-nowrap {
+ -ms-flex-wrap: nowrap!important;
+ flex-wrap: nowrap!important
+}
+
+.flex-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse!important;
+ flex-wrap: wrap-reverse!important
+}
+
+.justify-content-start {
+ -webkit-box-pack: start!important;
+ -ms-flex-pack: start!important;
+ justify-content: flex-start!important
+}
+
+.justify-content-end {
+ -webkit-box-pack: end!important;
+ -ms-flex-pack: end!important;
+ justify-content: flex-end!important
+}
+
+.justify-content-center {
+ -webkit-box-pack: center!important;
+ -ms-flex-pack: center!important;
+ justify-content: center!important
+}
+
+.justify-content-between {
+ -webkit-box-pack: justify!important;
+ -ms-flex-pack: justify!important;
+ justify-content: space-between!important
+}
+
+.justify-content-around {
+ -ms-flex-pack: distribute!important;
+ justify-content: space-around!important
+}
+
+.align-items-start {
+ -webkit-box-align: start!important;
+ -ms-flex-align: start!important;
+ align-items: flex-start!important
+}
+
+.align-items-end {
+ -webkit-box-align: end!important;
+ -ms-flex-align: end!important;
+ align-items: flex-end!important
+}
+
+.align-items-center {
+ -webkit-box-align: center!important;
+ -ms-flex-align: center!important;
+ align-items: center!important
+}
+
+.align-items-baseline {
+ -webkit-box-align: baseline!important;
+ -ms-flex-align: baseline!important;
+ align-items: baseline!important
+}
+
+.align-items-stretch {
+ -webkit-box-align: stretch!important;
+ -ms-flex-align: stretch!important;
+ align-items: stretch!important
+}
+
+.align-content-start {
+ -ms-flex-line-pack: start!important;
+ align-content: flex-start!important
+}
+
+.align-content-end {
+ -ms-flex-line-pack: end!important;
+ align-content: flex-end!important
+}
+
+.align-content-center {
+ -ms-flex-line-pack: center!important;
+ align-content: center!important
+}
+
+.align-content-between {
+ -ms-flex-line-pack: justify!important;
+ align-content: space-between!important
+}
+
+.align-content-around {
+ -ms-flex-line-pack: distribute!important;
+ align-content: space-around!important
+}
+
+.align-content-stretch {
+ -ms-flex-line-pack: stretch!important;
+ align-content: stretch!important
+}
+
+.align-self-auto {
+ -ms-flex-item-align: auto!important;
+ align-self: auto!important
+}
+
+.align-self-start {
+ -ms-flex-item-align: start!important;
+ align-self: flex-start!important
+}
+
+.align-self-end {
+ -ms-flex-item-align: end!important;
+ align-self: flex-end!important
+}
+
+.align-self-center {
+ -ms-flex-item-align: center!important;
+ align-self: center!important
+}
+
+.align-self-baseline {
+ -ms-flex-item-align: baseline!important;
+ align-self: baseline!important
+}
+
+.align-self-stretch {
+ -ms-flex-item-align: stretch!important;
+ align-self: stretch!important
+}
+
+@media (min-width:576px) {
+ .flex-sm-row {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: row!important;
+ flex-direction: row!important
+ }
+ .flex-sm-column {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: column!important;
+ flex-direction: column!important
+ }
+ .flex-sm-row-reverse {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: row-reverse!important;
+ flex-direction: row-reverse!important
+ }
+ .flex-sm-column-reverse {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: column-reverse!important;
+ flex-direction: column-reverse!important
+ }
+ .flex-sm-wrap {
+ -ms-flex-wrap: wrap!important;
+ flex-wrap: wrap!important
+ }
+ .flex-sm-nowrap {
+ -ms-flex-wrap: nowrap!important;
+ flex-wrap: nowrap!important
+ }
+ .flex-sm-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse!important;
+ flex-wrap: wrap-reverse!important
+ }
+ .justify-content-sm-start {
+ -webkit-box-pack: start!important;
+ -ms-flex-pack: start!important;
+ justify-content: flex-start!important
+ }
+ .justify-content-sm-end {
+ -webkit-box-pack: end!important;
+ -ms-flex-pack: end!important;
+ justify-content: flex-end!important
+ }
+ .justify-content-sm-center {
+ -webkit-box-pack: center!important;
+ -ms-flex-pack: center!important;
+ justify-content: center!important
+ }
+ .justify-content-sm-between {
+ -webkit-box-pack: justify!important;
+ -ms-flex-pack: justify!important;
+ justify-content: space-between!important
+ }
+ .justify-content-sm-around {
+ -ms-flex-pack: distribute!important;
+ justify-content: space-around!important
+ }
+ .align-items-sm-start {
+ -webkit-box-align: start!important;
+ -ms-flex-align: start!important;
+ align-items: flex-start!important
+ }
+ .align-items-sm-end {
+ -webkit-box-align: end!important;
+ -ms-flex-align: end!important;
+ align-items: flex-end!important
+ }
+ .align-items-sm-center {
+ -webkit-box-align: center!important;
+ -ms-flex-align: center!important;
+ align-items: center!important
+ }
+ .align-items-sm-baseline {
+ -webkit-box-align: baseline!important;
+ -ms-flex-align: baseline!important;
+ align-items: baseline!important
+ }
+ .align-items-sm-stretch {
+ -webkit-box-align: stretch!important;
+ -ms-flex-align: stretch!important;
+ align-items: stretch!important
+ }
+ .align-content-sm-start {
+ -ms-flex-line-pack: start!important;
+ align-content: flex-start!important
+ }
+ .align-content-sm-end {
+ -ms-flex-line-pack: end!important;
+ align-content: flex-end!important
+ }
+ .align-content-sm-center {
+ -ms-flex-line-pack: center!important;
+ align-content: center!important
+ }
+ .align-content-sm-between {
+ -ms-flex-line-pack: justify!important;
+ align-content: space-between!important
+ }
+ .align-content-sm-around {
+ -ms-flex-line-pack: distribute!important;
+ align-content: space-around!important
+ }
+ .align-content-sm-stretch {
+ -ms-flex-line-pack: stretch!important;
+ align-content: stretch!important
+ }
+ .align-self-sm-auto {
+ -ms-flex-item-align: auto!important;
+ align-self: auto!important
+ }
+ .align-self-sm-start {
+ -ms-flex-item-align: start!important;
+ align-self: flex-start!important
+ }
+ .align-self-sm-end {
+ -ms-flex-item-align: end!important;
+ align-self: flex-end!important
+ }
+ .align-self-sm-center {
+ -ms-flex-item-align: center!important;
+ align-self: center!important
+ }
+ .align-self-sm-baseline {
+ -ms-flex-item-align: baseline!important;
+ align-self: baseline!important
+ }
+ .align-self-sm-stretch {
+ -ms-flex-item-align: stretch!important;
+ align-self: stretch!important
+ }
+}
+
+@media (min-width:768px) {
+ .flex-md-row {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: row!important;
+ flex-direction: row!important
+ }
+ .flex-md-column {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: column!important;
+ flex-direction: column!important
+ }
+ .flex-md-row-reverse {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: row-reverse!important;
+ flex-direction: row-reverse!important
+ }
+ .flex-md-column-reverse {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: column-reverse!important;
+ flex-direction: column-reverse!important
+ }
+ .flex-md-wrap {
+ -ms-flex-wrap: wrap!important;
+ flex-wrap: wrap!important
+ }
+ .flex-md-nowrap {
+ -ms-flex-wrap: nowrap!important;
+ flex-wrap: nowrap!important
+ }
+ .flex-md-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse!important;
+ flex-wrap: wrap-reverse!important
+ }
+ .justify-content-md-start {
+ -webkit-box-pack: start!important;
+ -ms-flex-pack: start!important;
+ justify-content: flex-start!important
+ }
+ .justify-content-md-end {
+ -webkit-box-pack: end!important;
+ -ms-flex-pack: end!important;
+ justify-content: flex-end!important
+ }
+ .justify-content-md-center {
+ -webkit-box-pack: center!important;
+ -ms-flex-pack: center!important;
+ justify-content: center!important
+ }
+ .justify-content-md-between {
+ -webkit-box-pack: justify!important;
+ -ms-flex-pack: justify!important;
+ justify-content: space-between!important
+ }
+ .justify-content-md-around {
+ -ms-flex-pack: distribute!important;
+ justify-content: space-around!important
+ }
+ .align-items-md-start {
+ -webkit-box-align: start!important;
+ -ms-flex-align: start!important;
+ align-items: flex-start!important
+ }
+ .align-items-md-end {
+ -webkit-box-align: end!important;
+ -ms-flex-align: end!important;
+ align-items: flex-end!important
+ }
+ .align-items-md-center {
+ -webkit-box-align: center!important;
+ -ms-flex-align: center!important;
+ align-items: center!important
+ }
+ .align-items-md-baseline {
+ -webkit-box-align: baseline!important;
+ -ms-flex-align: baseline!important;
+ align-items: baseline!important
+ }
+ .align-items-md-stretch {
+ -webkit-box-align: stretch!important;
+ -ms-flex-align: stretch!important;
+ align-items: stretch!important
+ }
+ .align-content-md-start {
+ -ms-flex-line-pack: start!important;
+ align-content: flex-start!important
+ }
+ .align-content-md-end {
+ -ms-flex-line-pack: end!important;
+ align-content: flex-end!important
+ }
+ .align-content-md-center {
+ -ms-flex-line-pack: center!important;
+ align-content: center!important
+ }
+ .align-content-md-between {
+ -ms-flex-line-pack: justify!important;
+ align-content: space-between!important
+ }
+ .align-content-md-around {
+ -ms-flex-line-pack: distribute!important;
+ align-content: space-around!important
+ }
+ .align-content-md-stretch {
+ -ms-flex-line-pack: stretch!important;
+ align-content: stretch!important
+ }
+ .align-self-md-auto {
+ -ms-flex-item-align: auto!important;
+ align-self: auto!important
+ }
+ .align-self-md-start {
+ -ms-flex-item-align: start!important;
+ align-self: flex-start!important
+ }
+ .align-self-md-end {
+ -ms-flex-item-align: end!important;
+ align-self: flex-end!important
+ }
+ .align-self-md-center {
+ -ms-flex-item-align: center!important;
+ align-self: center!important
+ }
+ .align-self-md-baseline {
+ -ms-flex-item-align: baseline!important;
+ align-self: baseline!important
+ }
+ .align-self-md-stretch {
+ -ms-flex-item-align: stretch!important;
+ align-self: stretch!important
+ }
+}
+
+@media (min-width:992px) {
+ .flex-lg-row {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: row!important;
+ flex-direction: row!important
+ }
+ .flex-lg-column {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: column!important;
+ flex-direction: column!important
+ }
+ .flex-lg-row-reverse {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: row-reverse!important;
+ flex-direction: row-reverse!important
+ }
+ .flex-lg-column-reverse {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: column-reverse!important;
+ flex-direction: column-reverse!important
+ }
+ .flex-lg-wrap {
+ -ms-flex-wrap: wrap!important;
+ flex-wrap: wrap!important
+ }
+ .flex-lg-nowrap {
+ -ms-flex-wrap: nowrap!important;
+ flex-wrap: nowrap!important
+ }
+ .flex-lg-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse!important;
+ flex-wrap: wrap-reverse!important
+ }
+ .justify-content-lg-start {
+ -webkit-box-pack: start!important;
+ -ms-flex-pack: start!important;
+ justify-content: flex-start!important
+ }
+ .justify-content-lg-end {
+ -webkit-box-pack: end!important;
+ -ms-flex-pack: end!important;
+ justify-content: flex-end!important
+ }
+ .justify-content-lg-center {
+ -webkit-box-pack: center!important;
+ -ms-flex-pack: center!important;
+ justify-content: center!important
+ }
+ .justify-content-lg-between {
+ -webkit-box-pack: justify!important;
+ -ms-flex-pack: justify!important;
+ justify-content: space-between!important
+ }
+ .justify-content-lg-around {
+ -ms-flex-pack: distribute!important;
+ justify-content: space-around!important
+ }
+ .align-items-lg-start {
+ -webkit-box-align: start!important;
+ -ms-flex-align: start!important;
+ align-items: flex-start!important
+ }
+ .align-items-lg-end {
+ -webkit-box-align: end!important;
+ -ms-flex-align: end!important;
+ align-items: flex-end!important
+ }
+ .align-items-lg-center {
+ -webkit-box-align: center!important;
+ -ms-flex-align: center!important;
+ align-items: center!important
+ }
+ .align-items-lg-baseline {
+ -webkit-box-align: baseline!important;
+ -ms-flex-align: baseline!important;
+ align-items: baseline!important
+ }
+ .align-items-lg-stretch {
+ -webkit-box-align: stretch!important;
+ -ms-flex-align: stretch!important;
+ align-items: stretch!important
+ }
+ .align-content-lg-start {
+ -ms-flex-line-pack: start!important;
+ align-content: flex-start!important
+ }
+ .align-content-lg-end {
+ -ms-flex-line-pack: end!important;
+ align-content: flex-end!important
+ }
+ .align-content-lg-center {
+ -ms-flex-line-pack: center!important;
+ align-content: center!important
+ }
+ .align-content-lg-between {
+ -ms-flex-line-pack: justify!important;
+ align-content: space-between!important
+ }
+ .align-content-lg-around {
+ -ms-flex-line-pack: distribute!important;
+ align-content: space-around!important
+ }
+ .align-content-lg-stretch {
+ -ms-flex-line-pack: stretch!important;
+ align-content: stretch!important
+ }
+ .align-self-lg-auto {
+ -ms-flex-item-align: auto!important;
+ align-self: auto!important
+ }
+ .align-self-lg-start {
+ -ms-flex-item-align: start!important;
+ align-self: flex-start!important
+ }
+ .align-self-lg-end {
+ -ms-flex-item-align: end!important;
+ align-self: flex-end!important
+ }
+ .align-self-lg-center {
+ -ms-flex-item-align: center!important;
+ align-self: center!important
+ }
+ .align-self-lg-baseline {
+ -ms-flex-item-align: baseline!important;
+ align-self: baseline!important
+ }
+ .align-self-lg-stretch {
+ -ms-flex-item-align: stretch!important;
+ align-self: stretch!important
+ }
+}
+
+@media (min-width:1200px) {
+ .flex-xl-row {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: row!important;
+ flex-direction: row!important
+ }
+ .flex-xl-column {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: normal!important;
+ -ms-flex-direction: column!important;
+ flex-direction: column!important
+ }
+ .flex-xl-row-reverse {
+ -webkit-box-orient: horizontal!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: row-reverse!important;
+ flex-direction: row-reverse!important
+ }
+ .flex-xl-column-reverse {
+ -webkit-box-orient: vertical!important;
+ -webkit-box-direction: reverse!important;
+ -ms-flex-direction: column-reverse!important;
+ flex-direction: column-reverse!important
+ }
+ .flex-xl-wrap {
+ -ms-flex-wrap: wrap!important;
+ flex-wrap: wrap!important
+ }
+ .flex-xl-nowrap {
+ -ms-flex-wrap: nowrap!important;
+ flex-wrap: nowrap!important
+ }
+ .flex-xl-wrap-reverse {
+ -ms-flex-wrap: wrap-reverse!important;
+ flex-wrap: wrap-reverse!important
+ }
+ .justify-content-xl-start {
+ -webkit-box-pack: start!important;
+ -ms-flex-pack: start!important;
+ justify-content: flex-start!important
+ }
+ .justify-content-xl-end {
+ -webkit-box-pack: end!important;
+ -ms-flex-pack: end!important;
+ justify-content: flex-end!important
+ }
+ .justify-content-xl-center {
+ -webkit-box-pack: center!important;
+ -ms-flex-pack: center!important;
+ justify-content: center!important
+ }
+ .justify-content-xl-between {
+ -webkit-box-pack: justify!important;
+ -ms-flex-pack: justify!important;
+ justify-content: space-between!important
+ }
+ .justify-content-xl-around {
+ -ms-flex-pack: distribute!important;
+ justify-content: space-around!important
+ }
+ .align-items-xl-start {
+ -webkit-box-align: start!important;
+ -ms-flex-align: start!important;
+ align-items: flex-start!important
+ }
+ .align-items-xl-end {
+ -webkit-box-align: end!important;
+ -ms-flex-align: end!important;
+ align-items: flex-end!important
+ }
+ .align-items-xl-center {
+ -webkit-box-align: center!important;
+ -ms-flex-align: center!important;
+ align-items: center!important
+ }
+ .align-items-xl-baseline {
+ -webkit-box-align: baseline!important;
+ -ms-flex-align: baseline!important;
+ align-items: baseline!important
+ }
+ .align-items-xl-stretch {
+ -webkit-box-align: stretch!important;
+ -ms-flex-align: stretch!important;
+ align-items: stretch!important
+ }
+ .align-content-xl-start {
+ -ms-flex-line-pack: start!important;
+ align-content: flex-start!important
+ }
+ .align-content-xl-end {
+ -ms-flex-line-pack: end!important;
+ align-content: flex-end!important
+ }
+ .align-content-xl-center {
+ -ms-flex-line-pack: center!important;
+ align-content: center!important
+ }
+ .align-content-xl-between {
+ -ms-flex-line-pack: justify!important;
+ align-content: space-between!important
+ }
+ .align-content-xl-around {
+ -ms-flex-line-pack: distribute!important;
+ align-content: space-around!important
+ }
+ .align-content-xl-stretch {
+ -ms-flex-line-pack: stretch!important;
+ align-content: stretch!important
+ }
+ .align-self-xl-auto {
+ -ms-flex-item-align: auto!important;
+ align-self: auto!important
+ }
+ .align-self-xl-start {
+ -ms-flex-item-align: start!important;
+ align-self: flex-start!important
+ }
+ .align-self-xl-end {
+ -ms-flex-item-align: end!important;
+ align-self: flex-end!important
+ }
+ .align-self-xl-center {
+ -ms-flex-item-align: center!important;
+ align-self: center!important
+ }
+ .align-self-xl-baseline {
+ -ms-flex-item-align: baseline!important;
+ align-self: baseline!important
+ }
+ .align-self-xl-stretch {
+ -ms-flex-item-align: stretch!important;
+ align-self: stretch!important
+ }
+}
+
+.float-left {
+ float: left!important
+}
+
+.float-right {
+ float: right!important
+}
+
+.float-none {
+ float: none!important
+}
+
+@media (min-width:576px) {
+ .float-sm-left {
+ float: left!important
+ }
+ .float-sm-right {
+ float: right!important
+ }
+ .float-sm-none {
+ float: none!important
+ }
+}
+
+@media (min-width:768px) {
+ .float-md-left {
+ float: left!important
+ }
+ .float-md-right {
+ float: right!important
+ }
+ .float-md-none {
+ float: none!important
+ }
+}
+
+@media (min-width:992px) {
+ .float-lg-left {
+ float: left!important
+ }
+ .float-lg-right {
+ float: right!important
+ }
+ .float-lg-none {
+ float: none!important
+ }
+}
+
+@media (min-width:1200px) {
+ .float-xl-left {
+ float: left!important
+ }
+ .float-xl-right {
+ float: right!important
+ }
+ .float-xl-none {
+ float: none!important
+ }
+}
+
+.position-static {
+ position: static!important
+}
+
+.position-relative {
+ position: relative!important
+}
+
+.position-absolute {
+ position: absolute!important
+}
+
+.position-fixed {
+ position: fixed!important
+}
+
+.position-sticky {
+ position: -webkit-sticky!important;
+ position: sticky!important
+}
+
+.fixed-top {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ z-index: 1030
+}
+
+.fixed-bottom {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1030
+}
+
+@supports ((position:-webkit-sticky) or (position:sticky)) {
+ .sticky-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020
+ }
+}
+
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ -webkit-clip-path: inset(50%);
+ clip-path: inset(50%);
+ border: 0
+}
+
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ overflow: visible;
+ clip: auto;
+ white-space: normal;
+ -webkit-clip-path: none;
+ clip-path: none
+}
+
+.w-25 {
+ width: 25%!important
+}
+
+.w-50 {
+ width: 50%!important
+}
+
+.w-75 {
+ width: 75%!important
+}
+
+.w-100 {
+ width: 100%!important
+}
+
+.h-25 {
+ height: 25%!important
+}
+
+.h-50 {
+ height: 50%!important
+}
+
+.h-75 {
+ height: 75%!important
+}
+
+.h-100 {
+ height: 100%!important
+}
+
+.mw-100 {
+ max-width: 100%!important
+}
+
+.mh-100 {
+ max-height: 100%!important
+}
+
+.m-0 {
+ margin: 0!important
+}
+
+.mt-0,
+.my-0 {
+ margin-top: 0!important
+}
+
+.mr-0,
+.mx-0 {
+ margin-right: 0!important
+}
+
+.mb-0,
+.my-0 {
+ margin-bottom: 0!important
+}
+
+.ml-0,
+.mx-0 {
+ margin-left: 0!important
+}
+
+.m-1 {
+ margin: .25rem!important
+}
+
+.mt-1,
+.my-1 {
+ margin-top: .25rem!important
+}
+
+.mr-1,
+.mx-1 {
+ margin-right: .25rem!important
+}
+
+.mb-1,
+.my-1 {
+ margin-bottom: .25rem!important
+}
+
+.ml-1,
+.mx-1 {
+ margin-left: .25rem!important
+}
+
+.m-2 {
+ margin: .5rem!important
+}
+
+.mt-2,
+.my-2 {
+ margin-top: .5rem!important
+}
+
+.mr-2,
+.mx-2 {
+ margin-right: .5rem!important
+}
+
+.mb-2,
+.my-2 {
+ margin-bottom: .5rem!important
+}
+
+.ml-2,
+.mx-2 {
+ margin-left: .5rem!important
+}
+
+.m-3 {
+ margin: 1rem!important
+}
+
+.mt-3,
+.my-3 {
+ margin-top: 1rem!important
+}
+
+.mr-3,
+.mx-3 {
+ margin-right: 1rem!important
+}
+
+.mb-3,
+.my-3 {
+ margin-bottom: 1rem!important
+}
+
+.ml-3,
+.mx-3 {
+ margin-left: 1rem!important
+}
+
+.m-4 {
+ margin: 1.5rem!important
+}
+
+.mt-4,
+.my-4 {
+ margin-top: 1.5rem!important
+}
+
+.mr-4,
+.mx-4 {
+ margin-right: 1.5rem!important
+}
+
+.mb-4,
+.my-4 {
+ margin-bottom: 1.5rem!important
+}
+
+.ml-4,
+.mx-4 {
+ margin-left: 1.5rem!important
+}
+
+.m-5 {
+ margin: 3rem!important
+}
+
+.mt-5,
+.my-5 {
+ margin-top: 3rem!important
+}
+
+.mr-5,
+.mx-5 {
+ margin-right: 3rem!important
+}
+
+.mb-5,
+.my-5 {
+ margin-bottom: 3rem!important
+}
+
+.ml-5,
+.mx-5 {
+ margin-left: 3rem!important
+}
+
+.p-0 {
+ padding: 0!important
+}
+
+.pt-0,
+.py-0 {
+ padding-top: 0!important
+}
+
+.pr-0,
+.px-0 {
+ padding-right: 0!important
+}
+
+.pb-0,
+.py-0 {
+ padding-bottom: 0!important
+}
+
+.pl-0,
+.px-0 {
+ padding-left: 0!important
+}
+
+.p-1 {
+ padding: .25rem!important
+}
+
+.pt-1,
+.py-1 {
+ padding-top: .25rem!important
+}
+
+.pr-1,
+.px-1 {
+ padding-right: .25rem!important
+}
+
+.pb-1,
+.py-1 {
+ padding-bottom: .25rem!important
+}
+
+.pl-1,
+.px-1 {
+ padding-left: .25rem!important
+}
+
+.p-2 {
+ padding: .5rem!important
+}
+
+.pt-2,
+.py-2 {
+ padding-top: .5rem!important
+}
+
+.pr-2,
+.px-2 {
+ padding-right: .5rem!important
+}
+
+.pb-2,
+.py-2 {
+ padding-bottom: .5rem!important
+}
+
+.pl-2,
+.px-2 {
+ padding-left: .5rem!important
+}
+
+.p-3 {
+ padding: 1rem!important
+}
+
+.pt-3,
+.py-3 {
+ padding-top: 1rem!important
+}
+
+.pr-3,
+.px-3 {
+ padding-right: 1rem!important
+}
+
+.pb-3,
+.py-3 {
+ padding-bottom: 1rem!important
+}
+
+.pl-3,
+.px-3 {
+ padding-left: 1rem!important
+}
+
+.p-4 {
+ padding: 1.5rem!important
+}
+
+.pt-4,
+.py-4 {
+ padding-top: 1.5rem!important
+}
+
+.pr-4,
+.px-4 {
+ padding-right: 1.5rem!important
+}
+
+.pb-4,
+.py-4 {
+ padding-bottom: 1.5rem!important
+}
+
+.pl-4,
+.px-4 {
+ padding-left: 1.5rem!important
+}
+
+.p-5 {
+ padding: 3rem!important
+}
+
+.pt-5,
+.py-5 {
+ padding-top: 3rem!important
+}
+
+.pr-5,
+.px-5 {
+ padding-right: 3rem!important
+}
+
+.pb-5,
+.py-5 {
+ padding-bottom: 3rem!important
+}
+
+.pl-5,
+.px-5 {
+ padding-left: 3rem!important
+}
+
+.m-auto {
+ margin: auto!important
+}
+
+.mt-auto,
+.my-auto {
+ margin-top: auto!important
+}
+
+.mr-auto,
+.mx-auto {
+ margin-right: auto!important
+}
+
+.mb-auto,
+.my-auto {
+ margin-bottom: auto!important
+}
+
+.ml-auto,
+.mx-auto {
+ margin-left: auto!important
+}
+
+@media (min-width:576px) {
+ .m-sm-0 {
+ margin: 0!important
+ }
+ .mt-sm-0,
+ .my-sm-0 {
+ margin-top: 0!important
+ }
+ .mr-sm-0,
+ .mx-sm-0 {
+ margin-right: 0!important
+ }
+ .mb-sm-0,
+ .my-sm-0 {
+ margin-bottom: 0!important
+ }
+ .ml-sm-0,
+ .mx-sm-0 {
+ margin-left: 0!important
+ }
+ .m-sm-1 {
+ margin: .25rem!important
+ }
+ .mt-sm-1,
+ .my-sm-1 {
+ margin-top: .25rem!important
+ }
+ .mr-sm-1,
+ .mx-sm-1 {
+ margin-right: .25rem!important
+ }
+ .mb-sm-1,
+ .my-sm-1 {
+ margin-bottom: .25rem!important
+ }
+ .ml-sm-1,
+ .mx-sm-1 {
+ margin-left: .25rem!important
+ }
+ .m-sm-2 {
+ margin: .5rem!important
+ }
+ .mt-sm-2,
+ .my-sm-2 {
+ margin-top: .5rem!important
+ }
+ .mr-sm-2,
+ .mx-sm-2 {
+ margin-right: .5rem!important
+ }
+ .mb-sm-2,
+ .my-sm-2 {
+ margin-bottom: .5rem!important
+ }
+ .ml-sm-2,
+ .mx-sm-2 {
+ margin-left: .5rem!important
+ }
+ .m-sm-3 {
+ margin: 1rem!important
+ }
+ .mt-sm-3,
+ .my-sm-3 {
+ margin-top: 1rem!important
+ }
+ .mr-sm-3,
+ .mx-sm-3 {
+ margin-right: 1rem!important
+ }
+ .mb-sm-3,
+ .my-sm-3 {
+ margin-bottom: 1rem!important
+ }
+ .ml-sm-3,
+ .mx-sm-3 {
+ margin-left: 1rem!important
+ }
+ .m-sm-4 {
+ margin: 1.5rem!important
+ }
+ .mt-sm-4,
+ .my-sm-4 {
+ margin-top: 1.5rem!important
+ }
+ .mr-sm-4,
+ .mx-sm-4 {
+ margin-right: 1.5rem!important
+ }
+ .mb-sm-4,
+ .my-sm-4 {
+ margin-bottom: 1.5rem!important
+ }
+ .ml-sm-4,
+ .mx-sm-4 {
+ margin-left: 1.5rem!important
+ }
+ .m-sm-5 {
+ margin: 3rem!important
+ }
+ .mt-sm-5,
+ .my-sm-5 {
+ margin-top: 3rem!important
+ }
+ .mr-sm-5,
+ .mx-sm-5 {
+ margin-right: 3rem!important
+ }
+ .mb-sm-5,
+ .my-sm-5 {
+ margin-bottom: 3rem!important
+ }
+ .ml-sm-5,
+ .mx-sm-5 {
+ margin-left: 3rem!important
+ }
+ .p-sm-0 {
+ padding: 0!important
+ }
+ .pt-sm-0,
+ .py-sm-0 {
+ padding-top: 0!important
+ }
+ .pr-sm-0,
+ .px-sm-0 {
+ padding-right: 0!important
+ }
+ .pb-sm-0,
+ .py-sm-0 {
+ padding-bottom: 0!important
+ }
+ .pl-sm-0,
+ .px-sm-0 {
+ padding-left: 0!important
+ }
+ .p-sm-1 {
+ padding: .25rem!important
+ }
+ .pt-sm-1,
+ .py-sm-1 {
+ padding-top: .25rem!important
+ }
+ .pr-sm-1,
+ .px-sm-1 {
+ padding-right: .25rem!important
+ }
+ .pb-sm-1,
+ .py-sm-1 {
+ padding-bottom: .25rem!important
+ }
+ .pl-sm-1,
+ .px-sm-1 {
+ padding-left: .25rem!important
+ }
+ .p-sm-2 {
+ padding: .5rem!important
+ }
+ .pt-sm-2,
+ .py-sm-2 {
+ padding-top: .5rem!important
+ }
+ .pr-sm-2,
+ .px-sm-2 {
+ padding-right: .5rem!important
+ }
+ .pb-sm-2,
+ .py-sm-2 {
+ padding-bottom: .5rem!important
+ }
+ .pl-sm-2,
+ .px-sm-2 {
+ padding-left: .5rem!important
+ }
+ .p-sm-3 {
+ padding: 1rem!important
+ }
+ .pt-sm-3,
+ .py-sm-3 {
+ padding-top: 1rem!important
+ }
+ .pr-sm-3,
+ .px-sm-3 {
+ padding-right: 1rem!important
+ }
+ .pb-sm-3,
+ .py-sm-3 {
+ padding-bottom: 1rem!important
+ }
+ .pl-sm-3,
+ .px-sm-3 {
+ padding-left: 1rem!important
+ }
+ .p-sm-4 {
+ padding: 1.5rem!important
+ }
+ .pt-sm-4,
+ .py-sm-4 {
+ padding-top: 1.5rem!important
+ }
+ .pr-sm-4,
+ .px-sm-4 {
+ padding-right: 1.5rem!important
+ }
+ .pb-sm-4,
+ .py-sm-4 {
+ padding-bottom: 1.5rem!important
+ }
+ .pl-sm-4,
+ .px-sm-4 {
+ padding-left: 1.5rem!important
+ }
+ .p-sm-5 {
+ padding: 3rem!important
+ }
+ .pt-sm-5,
+ .py-sm-5 {
+ padding-top: 3rem!important
+ }
+ .pr-sm-5,
+ .px-sm-5 {
+ padding-right: 3rem!important
+ }
+ .pb-sm-5,
+ .py-sm-5 {
+ padding-bottom: 3rem!important
+ }
+ .pl-sm-5,
+ .px-sm-5 {
+ padding-left: 3rem!important
+ }
+ .m-sm-auto {
+ margin: auto!important
+ }
+ .mt-sm-auto,
+ .my-sm-auto {
+ margin-top: auto!important
+ }
+ .mr-sm-auto,
+ .mx-sm-auto {
+ margin-right: auto!important
+ }
+ .mb-sm-auto,
+ .my-sm-auto {
+ margin-bottom: auto!important
+ }
+ .ml-sm-auto,
+ .mx-sm-auto {
+ margin-left: auto!important
+ }
+}
+
+@media (min-width:768px) {
+ .m-md-0 {
+ margin: 0!important
+ }
+ .mt-md-0,
+ .my-md-0 {
+ margin-top: 0!important
+ }
+ .mr-md-0,
+ .mx-md-0 {
+ margin-right: 0!important
+ }
+ .mb-md-0,
+ .my-md-0 {
+ margin-bottom: 0!important
+ }
+ .ml-md-0,
+ .mx-md-0 {
+ margin-left: 0!important
+ }
+ .m-md-1 {
+ margin: .25rem!important
+ }
+ .mt-md-1,
+ .my-md-1 {
+ margin-top: .25rem!important
+ }
+ .mr-md-1,
+ .mx-md-1 {
+ margin-right: .25rem!important
+ }
+ .mb-md-1,
+ .my-md-1 {
+ margin-bottom: .25rem!important
+ }
+ .ml-md-1,
+ .mx-md-1 {
+ margin-left: .25rem!important
+ }
+ .m-md-2 {
+ margin: .5rem!important
+ }
+ .mt-md-2,
+ .my-md-2 {
+ margin-top: .5rem!important
+ }
+ .mr-md-2,
+ .mx-md-2 {
+ margin-right: .5rem!important
+ }
+ .mb-md-2,
+ .my-md-2 {
+ margin-bottom: .5rem!important
+ }
+ .ml-md-2,
+ .mx-md-2 {
+ margin-left: .5rem!important
+ }
+ .m-md-3 {
+ margin: 1rem!important
+ }
+ .mt-md-3,
+ .my-md-3 {
+ margin-top: 1rem!important
+ }
+ .mr-md-3,
+ .mx-md-3 {
+ margin-right: 1rem!important
+ }
+ .mb-md-3,
+ .my-md-3 {
+ margin-bottom: 1rem!important
+ }
+ .ml-md-3,
+ .mx-md-3 {
+ margin-left: 1rem!important
+ }
+ .m-md-4 {
+ margin: 1.5rem!important
+ }
+ .mt-md-4,
+ .my-md-4 {
+ margin-top: 1.5rem!important
+ }
+ .mr-md-4,
+ .mx-md-4 {
+ margin-right: 1.5rem!important
+ }
+ .mb-md-4,
+ .my-md-4 {
+ margin-bottom: 1.5rem!important
+ }
+ .ml-md-4,
+ .mx-md-4 {
+ margin-left: 1.5rem!important
+ }
+ .m-md-5 {
+ margin: 3rem!important
+ }
+ .mt-md-5,
+ .my-md-5 {
+ margin-top: 3rem!important
+ }
+ .mr-md-5,
+ .mx-md-5 {
+ margin-right: 3rem!important
+ }
+ .mb-md-5,
+ .my-md-5 {
+ margin-bottom: 3rem!important
+ }
+ .ml-md-5,
+ .mx-md-5 {
+ margin-left: 3rem!important
+ }
+ .p-md-0 {
+ padding: 0!important
+ }
+ .pt-md-0,
+ .py-md-0 {
+ padding-top: 0!important
+ }
+ .pr-md-0,
+ .px-md-0 {
+ padding-right: 0!important
+ }
+ .pb-md-0,
+ .py-md-0 {
+ padding-bottom: 0!important
+ }
+ .pl-md-0,
+ .px-md-0 {
+ padding-left: 0!important
+ }
+ .p-md-1 {
+ padding: .25rem!important
+ }
+ .pt-md-1,
+ .py-md-1 {
+ padding-top: .25rem!important
+ }
+ .pr-md-1,
+ .px-md-1 {
+ padding-right: .25rem!important
+ }
+ .pb-md-1,
+ .py-md-1 {
+ padding-bottom: .25rem!important
+ }
+ .pl-md-1,
+ .px-md-1 {
+ padding-left: .25rem!important
+ }
+ .p-md-2 {
+ padding: .5rem!important
+ }
+ .pt-md-2,
+ .py-md-2 {
+ padding-top: .5rem!important
+ }
+ .pr-md-2,
+ .px-md-2 {
+ padding-right: .5rem!important
+ }
+ .pb-md-2,
+ .py-md-2 {
+ padding-bottom: .5rem!important
+ }
+ .pl-md-2,
+ .px-md-2 {
+ padding-left: .5rem!important
+ }
+ .p-md-3 {
+ padding: 1rem!important
+ }
+ .pt-md-3,
+ .py-md-3 {
+ padding-top: 1rem!important
+ }
+ .pr-md-3,
+ .px-md-3 {
+ padding-right: 1rem!important
+ }
+ .pb-md-3,
+ .py-md-3 {
+ padding-bottom: 1rem!important
+ }
+ .pl-md-3,
+ .px-md-3 {
+ padding-left: 1rem!important
+ }
+ .p-md-4 {
+ padding: 1.5rem!important
+ }
+ .pt-md-4,
+ .py-md-4 {
+ padding-top: 1.5rem!important
+ }
+ .pr-md-4,
+ .px-md-4 {
+ padding-right: 1.5rem!important
+ }
+ .pb-md-4,
+ .py-md-4 {
+ padding-bottom: 1.5rem!important
+ }
+ .pl-md-4,
+ .px-md-4 {
+ padding-left: 1.5rem!important
+ }
+ .p-md-5 {
+ padding: 3rem!important
+ }
+ .pt-md-5,
+ .py-md-5 {
+ padding-top: 3rem!important
+ }
+ .pr-md-5,
+ .px-md-5 {
+ padding-right: 3rem!important
+ }
+ .pb-md-5,
+ .py-md-5 {
+ padding-bottom: 3rem!important
+ }
+ .pl-md-5,
+ .px-md-5 {
+ padding-left: 3rem!important
+ }
+ .m-md-auto {
+ margin: auto!important
+ }
+ .mt-md-auto,
+ .my-md-auto {
+ margin-top: auto!important
+ }
+ .mr-md-auto,
+ .mx-md-auto {
+ margin-right: auto!important
+ }
+ .mb-md-auto,
+ .my-md-auto {
+ margin-bottom: auto!important
+ }
+ .ml-md-auto,
+ .mx-md-auto {
+ margin-left: auto!important
+ }
+}
+
+@media (min-width:992px) {
+ .m-lg-0 {
+ margin: 0!important
+ }
+ .mt-lg-0,
+ .my-lg-0 {
+ margin-top: 0!important
+ }
+ .mr-lg-0,
+ .mx-lg-0 {
+ margin-right: 0!important
+ }
+ .mb-lg-0,
+ .my-lg-0 {
+ margin-bottom: 0!important
+ }
+ .ml-lg-0,
+ .mx-lg-0 {
+ margin-left: 0!important
+ }
+ .m-lg-1 {
+ margin: .25rem!important
+ }
+ .mt-lg-1,
+ .my-lg-1 {
+ margin-top: .25rem!important
+ }
+ .mr-lg-1,
+ .mx-lg-1 {
+ margin-right: .25rem!important
+ }
+ .mb-lg-1,
+ .my-lg-1 {
+ margin-bottom: .25rem!important
+ }
+ .ml-lg-1,
+ .mx-lg-1 {
+ margin-left: .25rem!important
+ }
+ .m-lg-2 {
+ margin: .5rem!important
+ }
+ .mt-lg-2,
+ .my-lg-2 {
+ margin-top: .5rem!important
+ }
+ .mr-lg-2,
+ .mx-lg-2 {
+ margin-right: .5rem!important
+ }
+ .mb-lg-2,
+ .my-lg-2 {
+ margin-bottom: .5rem!important
+ }
+ .ml-lg-2,
+ .mx-lg-2 {
+ margin-left: .5rem!important
+ }
+ .m-lg-3 {
+ margin: 1rem!important
+ }
+ .mt-lg-3,
+ .my-lg-3 {
+ margin-top: 1rem!important
+ }
+ .mr-lg-3,
+ .mx-lg-3 {
+ margin-right: 1rem!important
+ }
+ .mb-lg-3,
+ .my-lg-3 {
+ margin-bottom: 1rem!important
+ }
+ .ml-lg-3,
+ .mx-lg-3 {
+ margin-left: 1rem!important
+ }
+ .m-lg-4 {
+ margin: 1.5rem!important
+ }
+ .mt-lg-4,
+ .my-lg-4 {
+ margin-top: 1.5rem!important
+ }
+ .mr-lg-4,
+ .mx-lg-4 {
+ margin-right: 1.5rem!important
+ }
+ .mb-lg-4,
+ .my-lg-4 {
+ margin-bottom: 1.5rem!important
+ }
+ .ml-lg-4,
+ .mx-lg-4 {
+ margin-left: 1.5rem!important
+ }
+ .m-lg-5 {
+ margin: 3rem!important
+ }
+ .mt-lg-5,
+ .my-lg-5 {
+ margin-top: 3rem!important
+ }
+ .mr-lg-5,
+ .mx-lg-5 {
+ margin-right: 3rem!important
+ }
+ .mb-lg-5,
+ .my-lg-5 {
+ margin-bottom: 3rem!important
+ }
+ .ml-lg-5,
+ .mx-lg-5 {
+ margin-left: 3rem!important
+ }
+ .p-lg-0 {
+ padding: 0!important
+ }
+ .pt-lg-0,
+ .py-lg-0 {
+ padding-top: 0!important
+ }
+ .pr-lg-0,
+ .px-lg-0 {
+ padding-right: 0!important
+ }
+ .pb-lg-0,
+ .py-lg-0 {
+ padding-bottom: 0!important
+ }
+ .pl-lg-0,
+ .px-lg-0 {
+ padding-left: 0!important
+ }
+ .p-lg-1 {
+ padding: .25rem!important
+ }
+ .pt-lg-1,
+ .py-lg-1 {
+ padding-top: .25rem!important
+ }
+ .pr-lg-1,
+ .px-lg-1 {
+ padding-right: .25rem!important
+ }
+ .pb-lg-1,
+ .py-lg-1 {
+ padding-bottom: .25rem!important
+ }
+ .pl-lg-1,
+ .px-lg-1 {
+ padding-left: .25rem!important
+ }
+ .p-lg-2 {
+ padding: .5rem!important
+ }
+ .pt-lg-2,
+ .py-lg-2 {
+ padding-top: .5rem!important
+ }
+ .pr-lg-2,
+ .px-lg-2 {
+ padding-right: .5rem!important
+ }
+ .pb-lg-2,
+ .py-lg-2 {
+ padding-bottom: .5rem!important
+ }
+ .pl-lg-2,
+ .px-lg-2 {
+ padding-left: .5rem!important
+ }
+ .p-lg-3 {
+ padding: 1rem!important
+ }
+ .pt-lg-3,
+ .py-lg-3 {
+ padding-top: 1rem!important
+ }
+ .pr-lg-3,
+ .px-lg-3 {
+ padding-right: 1rem!important
+ }
+ .pb-lg-3,
+ .py-lg-3 {
+ padding-bottom: 1rem!important
+ }
+ .pl-lg-3,
+ .px-lg-3 {
+ padding-left: 1rem!important
+ }
+ .p-lg-4 {
+ padding: 1.5rem!important
+ }
+ .pt-lg-4,
+ .py-lg-4 {
+ padding-top: 1.5rem!important
+ }
+ .pr-lg-4,
+ .px-lg-4 {
+ padding-right: 1.5rem!important
+ }
+ .pb-lg-4,
+ .py-lg-4 {
+ padding-bottom: 1.5rem!important
+ }
+ .pl-lg-4,
+ .px-lg-4 {
+ padding-left: 1.5rem!important
+ }
+ .p-lg-5 {
+ padding: 3rem!important
+ }
+ .pt-lg-5,
+ .py-lg-5 {
+ padding-top: 3rem!important
+ }
+ .pr-lg-5,
+ .px-lg-5 {
+ padding-right: 3rem!important
+ }
+ .pb-lg-5,
+ .py-lg-5 {
+ padding-bottom: 3rem!important
+ }
+ .pl-lg-5,
+ .px-lg-5 {
+ padding-left: 3rem!important
+ }
+ .m-lg-auto {
+ margin: auto!important
+ }
+ .mt-lg-auto,
+ .my-lg-auto {
+ margin-top: auto!important
+ }
+ .mr-lg-auto,
+ .mx-lg-auto {
+ margin-right: auto!important
+ }
+ .mb-lg-auto,
+ .my-lg-auto {
+ margin-bottom: auto!important
+ }
+ .ml-lg-auto,
+ .mx-lg-auto {
+ margin-left: auto!important
+ }
+}
+
+@media (min-width:1200px) {
+ .m-xl-0 {
+ margin: 0!important
+ }
+ .mt-xl-0,
+ .my-xl-0 {
+ margin-top: 0!important
+ }
+ .mr-xl-0,
+ .mx-xl-0 {
+ margin-right: 0!important
+ }
+ .mb-xl-0,
+ .my-xl-0 {
+ margin-bottom: 0!important
+ }
+ .ml-xl-0,
+ .mx-xl-0 {
+ margin-left: 0!important
+ }
+ .m-xl-1 {
+ margin: .25rem!important
+ }
+ .mt-xl-1,
+ .my-xl-1 {
+ margin-top: .25rem!important
+ }
+ .mr-xl-1,
+ .mx-xl-1 {
+ margin-right: .25rem!important
+ }
+ .mb-xl-1,
+ .my-xl-1 {
+ margin-bottom: .25rem!important
+ }
+ .ml-xl-1,
+ .mx-xl-1 {
+ margin-left: .25rem!important
+ }
+ .m-xl-2 {
+ margin: .5rem!important
+ }
+ .mt-xl-2,
+ .my-xl-2 {
+ margin-top: .5rem!important
+ }
+ .mr-xl-2,
+ .mx-xl-2 {
+ margin-right: .5rem!important
+ }
+ .mb-xl-2,
+ .my-xl-2 {
+ margin-bottom: .5rem!important
+ }
+ .ml-xl-2,
+ .mx-xl-2 {
+ margin-left: .5rem!important
+ }
+ .m-xl-3 {
+ margin: 1rem!important
+ }
+ .mt-xl-3,
+ .my-xl-3 {
+ margin-top: 1rem!important
+ }
+ .mr-xl-3,
+ .mx-xl-3 {
+ margin-right: 1rem!important
+ }
+ .mb-xl-3,
+ .my-xl-3 {
+ margin-bottom: 1rem!important
+ }
+ .ml-xl-3,
+ .mx-xl-3 {
+ margin-left: 1rem!important
+ }
+ .m-xl-4 {
+ margin: 1.5rem!important
+ }
+ .mt-xl-4,
+ .my-xl-4 {
+ margin-top: 1.5rem!important
+ }
+ .mr-xl-4,
+ .mx-xl-4 {
+ margin-right: 1.5rem!important
+ }
+ .mb-xl-4,
+ .my-xl-4 {
+ margin-bottom: 1.5rem!important
+ }
+ .ml-xl-4,
+ .mx-xl-4 {
+ margin-left: 1.5rem!important
+ }
+ .m-xl-5 {
+ margin: 3rem!important
+ }
+ .mt-xl-5,
+ .my-xl-5 {
+ margin-top: 3rem!important
+ }
+ .mr-xl-5,
+ .mx-xl-5 {
+ margin-right: 3rem!important
+ }
+ .mb-xl-5,
+ .my-xl-5 {
+ margin-bottom: 3rem!important
+ }
+ .ml-xl-5,
+ .mx-xl-5 {
+ margin-left: 3rem!important
+ }
+ .p-xl-0 {
+ padding: 0!important
+ }
+ .pt-xl-0,
+ .py-xl-0 {
+ padding-top: 0!important
+ }
+ .pr-xl-0,
+ .px-xl-0 {
+ padding-right: 0!important
+ }
+ .pb-xl-0,
+ .py-xl-0 {
+ padding-bottom: 0!important
+ }
+ .pl-xl-0,
+ .px-xl-0 {
+ padding-left: 0!important
+ }
+ .p-xl-1 {
+ padding: .25rem!important
+ }
+ .pt-xl-1,
+ .py-xl-1 {
+ padding-top: .25rem!important
+ }
+ .pr-xl-1,
+ .px-xl-1 {
+ padding-right: .25rem!important
+ }
+ .pb-xl-1,
+ .py-xl-1 {
+ padding-bottom: .25rem!important
+ }
+ .pl-xl-1,
+ .px-xl-1 {
+ padding-left: .25rem!important
+ }
+ .p-xl-2 {
+ padding: .5rem!important
+ }
+ .pt-xl-2,
+ .py-xl-2 {
+ padding-top: .5rem!important
+ }
+ .pr-xl-2,
+ .px-xl-2 {
+ padding-right: .5rem!important
+ }
+ .pb-xl-2,
+ .py-xl-2 {
+ padding-bottom: .5rem!important
+ }
+ .pl-xl-2,
+ .px-xl-2 {
+ padding-left: .5rem!important
+ }
+ .p-xl-3 {
+ padding: 1rem!important
+ }
+ .pt-xl-3,
+ .py-xl-3 {
+ padding-top: 1rem!important
+ }
+ .pr-xl-3,
+ .px-xl-3 {
+ padding-right: 1rem!important
+ }
+ .pb-xl-3,
+ .py-xl-3 {
+ padding-bottom: 1rem!important
+ }
+ .pl-xl-3,
+ .px-xl-3 {
+ padding-left: 1rem!important
+ }
+ .p-xl-4 {
+ padding: 1.5rem!important
+ }
+ .pt-xl-4,
+ .py-xl-4 {
+ padding-top: 1.5rem!important
+ }
+ .pr-xl-4,
+ .px-xl-4 {
+ padding-right: 1.5rem!important
+ }
+ .pb-xl-4,
+ .py-xl-4 {
+ padding-bottom: 1.5rem!important
+ }
+ .pl-xl-4,
+ .px-xl-4 {
+ padding-left: 1.5rem!important
+ }
+ .p-xl-5 {
+ padding: 3rem!important
+ }
+ .pt-xl-5,
+ .py-xl-5 {
+ padding-top: 3rem!important
+ }
+ .pr-xl-5,
+ .px-xl-5 {
+ padding-right: 3rem!important
+ }
+ .pb-xl-5,
+ .py-xl-5 {
+ padding-bottom: 3rem!important
+ }
+ .pl-xl-5,
+ .px-xl-5 {
+ padding-left: 3rem!important
+ }
+ .m-xl-auto {
+ margin: auto!important
+ }
+ .mt-xl-auto,
+ .my-xl-auto {
+ margin-top: auto!important
+ }
+ .mr-xl-auto,
+ .mx-xl-auto {
+ margin-right: auto!important
+ }
+ .mb-xl-auto,
+ .my-xl-auto {
+ margin-bottom: auto!important
+ }
+ .ml-xl-auto,
+ .mx-xl-auto {
+ margin-left: auto!important
+ }
+}
+
+.text-justify {
+ text-align: justify!important
+}
+
+.text-nowrap {
+ white-space: nowrap!important
+}
+
+.text-truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap
+}
+
+.text-left {
+ text-align: left!important
+}
+
+.text-right {
+ text-align: right!important
+}
+
+.text-center {
+ text-align: center!important
+}
+
+@media (min-width:576px) {
+ .text-sm-left {
+ text-align: left!important
+ }
+ .text-sm-right {
+ text-align: right!important
+ }
+ .text-sm-center {
+ text-align: center!important
+ }
+}
+
+@media (min-width:768px) {
+ .text-md-left {
+ text-align: left!important
+ }
+ .text-md-right {
+ text-align: right!important
+ }
+ .text-md-center {
+ text-align: center!important
+ }
+}
+
+@media (min-width:992px) {
+ .text-lg-left {
+ text-align: left!important
+ }
+ .text-lg-right {
+ text-align: right!important
+ }
+ .text-lg-center {
+ text-align: center!important
+ }
+}
+
+@media (min-width:1200px) {
+ .text-xl-left {
+ text-align: left!important
+ }
+ .text-xl-right {
+ text-align: right!important
+ }
+ .text-xl-center {
+ text-align: center!important
+ }
+}
+
+.text-lowercase {
+ text-transform: lowercase!important
+}
+
+.text-uppercase {
+ text-transform: uppercase!important
+}
+
+.text-capitalize {
+ text-transform: capitalize!important
+}
+
+.font-weight-light {
+ font-weight: 300!important
+}
+
+.font-weight-normal {
+ font-weight: 400!important
+}
+
+.font-weight-bold {
+ font-weight: 700!important
+}
+
+.font-italic {
+ font-style: italic!important
+}
+
+.text-white {
+ color: #fff!important
+}
+
+.text-primary {
+ color: #007bff!important
+}
+
+a.text-primary:focus,
+a.text-primary:hover {
+ color: #0062cc!important
+}
+
+.text-secondary {
+ color: #6c757d!important
+}
+
+a.text-secondary:focus,
+a.text-secondary:hover {
+ color: #545b62!important
+}
+
+.text-success {
+ color: #28a745!important
+}
+
+a.text-success:focus,
+a.text-success:hover {
+ color: #1e7e34!important
+}
+
+.text-info {
+ color: #17a2b8!important
+}
+
+a.text-info:focus,
+a.text-info:hover {
+ color: #117a8b!important
+}
+
+.text-warning {
+ color: #ffc107!important
+}
+
+a.text-warning:focus,
+a.text-warning:hover {
+ color: #d39e00!important
+}
+
+.text-danger {
+ color: #dc3545!important
+}
+
+a.text-danger:focus,
+a.text-danger:hover {
+ color: #bd2130!important
+}
+
+.text-light {
+ color: #f8f9fa!important
+}
+
+a.text-light:focus,
+a.text-light:hover {
+ color: #dae0e5!important
+}
+
+.text-dark {
+ color: #343a40!important
+}
+
+a.text-dark:focus,
+a.text-dark:hover {
+ color: #1d2124!important
+}
+
+.text-muted {
+ color: #6c757d!important
+}
+
+.text-hide {
+ font: 0/0 a;
+ color: transparent;
+ text-shadow: none;
+ background-color: transparent;
+ border: 0
+}
+
+.visible {
+ visibility: visible!important
+}
+
+.invisible {
+ visibility: hidden!important
+}
+
+@media print {
+ *,
+ ::after,
+ ::before {
+ text-shadow: none!important;
+ box-shadow: none!important
+ }
+ a:not(.btn) {
+ text-decoration: underline
+ }
+ abbr[title]::after {
+ content: " (" attr(title) ")"
+ }
+ pre {
+ white-space: pre-wrap!important
+ }
+ blockquote,
+ pre {
+ border: 1px solid #999;
+ page-break-inside: avoid
+ }
+ thead {
+ display: table-header-group
+ }
+ img,
+ tr {
+ page-break-inside: avoid
+ }
+ h2,
+ h3,
+ p {
+ orphans: 3;
+ widows: 3
+ }
+ h2,
+ h3 {
+ page-break-after: avoid
+ }
+ @page {
+ size: a3
+ }
+ body {
+ min-width: 992px!important
+ }
+ .container {
+ min-width: 992px!important
+ }
+ .navbar {
+ display: none
+ }
+ .badge {
+ border: 1px solid #000
+ }
+ .table {
+ border-collapse: collapse!important
+ }
+ .table td,
+ .table th {
+ background-color: #fff!important
+ }
+ .table-bordered td,
+ .table-bordered th {
+ border: 1px solid #ddd!important
+ }
+}
+
+
+/* # sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file
diff --git a/src/main/resources/static/css/flaticon.css b/src/main/resources/static/css/flaticon.css
new file mode 100644
index 0000000..a731269
--- /dev/null
+++ b/src/main/resources/static/css/flaticon.css
@@ -0,0 +1,33 @@
+ /*
+ Flaticon icon font: Flaticon
+ Creation date: 11/01/2020 06:59
+ */
+
+@font-face {
+ font-family: "Flaticon";
+ src: url("../fonts/Flaticon.eot");
+ src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
+ url("./Flaticon.woff2") format("woff2"),
+ url("../fonts/Flaticon.woff") format("woff"),
+ url("../fonts/Flaticon.ttf") format("truetype"),
+ url("../fonts/Flaticon.svg#Flaticon") format("svg");
+ font-weight: normal;
+ font-style: normal;
+}
+
+@media screen and (-webkit-min-device-pixel-ratio:0) {
+ @font-face {
+ font-family: "Flaticon";
+ src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
+ }
+}
+
+[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
+[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
+ font-family: Flaticon;
+font-style: normal;
+}
+
+.flaticon-null:before { content: "\f100"; }
+.flaticon-shave:before { content: "\f101"; }
+.flaticon-barber:before { content: "\f102"; } \ No newline at end of file
diff --git a/src/main/resources/static/css/font-awesome.min.css b/src/main/resources/static/css/font-awesome.min.css
new file mode 100644
index 0000000..54f0e3c
--- /dev/null
+++ b/src/main/resources/static/css/font-awesome.min.css
@@ -0,0 +1,4 @@
+/*!
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale} .fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%} .fa-2x{font-size:2em} .fa-3x{font-size:3em} .fa-4x{font-size:4em} .fa-5x{font-size:5em} .fa-fw{width:1.28571429em;text-align:center} .fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none} .fa-ul>li{position:relative} .fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center} .fa-li.fa-lg{left:-1.85714286em} .fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em} .fa-pull-left{float:left} .fa-pull-right{float:right} .fa.fa-pull-left{margin-right:.3em} .fa.fa-pull-right{margin-left:.3em} .pull-right{float:right} .pull-left{float:left} .fa.pull-left{margin-right:.3em} .fa.pull-right{margin-left:.3em} .fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear} .fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)} @-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} @keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} .fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)} .fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)} .fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)} .fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)} .fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)} :root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none} .fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle} .fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center} .fa-stack-1x{line-height:inherit} .fa-stack-2x{font-size:2em} .fa-inverse{color:#fff} .fa-glass:before{content:"\f000"} .fa-music:before{content:"\f001"} .fa-search:before{content:"\f002"} .fa-envelope-o:before{content:"\f003"} .fa-heart:before{content:"\f004"} .fa-star:before{content:"\f005"} .fa-star-o:before{content:"\f006"} .fa-user:before{content:"\f007"} .fa-film:before{content:"\f008"} .fa-th-large:before{content:"\f009"} .fa-th:before{content:"\f00a"} .fa-th-list:before{content:"\f00b"} .fa-check:before{content:"\f00c"} .fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"} .fa-search-plus:before{content:"\f00e"} .fa-search-minus:before{content:"\f010"} .fa-power-off:before{content:"\f011"} .fa-signal:before{content:"\f012"} .fa-gear:before,.fa-cog:before{content:"\f013"} .fa-trash-o:before{content:"\f014"} .fa-home:before{content:"\f015"} .fa-file-o:before{content:"\f016"} .fa-clock-o:before{content:"\f017"} .fa-road:before{content:"\f018"} .fa-download:before{content:"\f019"} .fa-arrow-circle-o-down:before{content:"\f01a"} .fa-arrow-circle-o-up:before{content:"\f01b"} .fa-inbox:before{content:"\f01c"} .fa-play-circle-o:before{content:"\f01d"} .fa-rotate-right:before,.fa-repeat:before{content:"\f01e"} .fa-refresh:before{content:"\f021"} .fa-list-alt:before{content:"\f022"} .fa-lock:before{content:"\f023"} .fa-flag:before{content:"\f024"} .fa-headphones:before{content:"\f025"} .fa-volume-off:before{content:"\f026"} .fa-volume-down:before{content:"\f027"} .fa-volume-up:before{content:"\f028"} .fa-qrcode:before{content:"\f029"} .fa-barcode:before{content:"\f02a"} .fa-tag:before{content:"\f02b"} .fa-tags:before{content:"\f02c"} .fa-book:before{content:"\f02d"} .fa-bookmark:before{content:"\f02e"} .fa-print:before{content:"\f02f"} .fa-camera:before{content:"\f030"} .fa-font:before{content:"\f031"} .fa-bold:before{content:"\f032"} .fa-italic:before{content:"\f033"} .fa-text-height:before{content:"\f034"} .fa-text-width:before{content:"\f035"} .fa-align-left:before{content:"\f036"} .fa-align-center:before{content:"\f037"} .fa-align-right:before{content:"\f038"} .fa-align-justify:before{content:"\f039"} .fa-list:before{content:"\f03a"} .fa-dedent:before,.fa-outdent:before{content:"\f03b"} .fa-indent:before{content:"\f03c"} .fa-video-camera:before{content:"\f03d"} .fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"} .fa-pencil:before{content:"\f040"} .fa-map-marker:before{content:"\f041"} .fa-adjust:before{content:"\f042"} .fa-tint:before{content:"\f043"} .fa-edit:before,.fa-pencil-square-o:before{content:"\f044"} .fa-share-square-o:before{content:"\f045"} .fa-check-square-o:before{content:"\f046"} .fa-arrows:before{content:"\f047"} .fa-step-backward:before{content:"\f048"} .fa-fast-backward:before{content:"\f049"} .fa-backward:before{content:"\f04a"} .fa-play:before{content:"\f04b"} .fa-pause:before{content:"\f04c"} .fa-stop:before{content:"\f04d"} .fa-forward:before{content:"\f04e"} .fa-fast-forward:before{content:"\f050"} .fa-step-forward:before{content:"\f051"} .fa-eject:before{content:"\f052"} .fa-chevron-left:before{content:"\f053"} .fa-chevron-right:before{content:"\f054"} .fa-plus-circle:before{content:"\f055"} .fa-minus-circle:before{content:"\f056"} .fa-times-circle:before{content:"\f057"} .fa-check-circle:before{content:"\f058"} .fa-question-circle:before{content:"\f059"} .fa-info-circle:before{content:"\f05a"} .fa-crosshairs:before{content:"\f05b"} .fa-times-circle-o:before{content:"\f05c"} .fa-check-circle-o:before{content:"\f05d"} .fa-ban:before{content:"\f05e"} .fa-arrow-left:before{content:"\f060"} .fa-arrow-right:before{content:"\f061"} .fa-arrow-up:before{content:"\f062"} .fa-arrow-down:before{content:"\f063"} .fa-mail-forward:before,.fa-share:before{content:"\f064"} .fa-expand:before{content:"\f065"} .fa-compress:before{content:"\f066"} .fa-plus:before{content:"\f067"} .fa-minus:before{content:"\f068"} .fa-asterisk:before{content:"\f069"} .fa-exclamation-circle:before{content:"\f06a"} .fa-gift:before{content:"\f06b"} .fa-leaf:before{content:"\f06c"} .fa-fire:before{content:"\f06d"} .fa-eye:before{content:"\f06e"} .fa-eye-slash:before{content:"\f070"} .fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"} .fa-plane:before{content:"\f072"} .fa-calendar:before{content:"\f073"} .fa-random:before{content:"\f074"} .fa-comment:before{content:"\f075"} .fa-magnet:before{content:"\f076"} .fa-chevron-up:before{content:"\f077"} .fa-chevron-down:before{content:"\f078"} .fa-retweet:before{content:"\f079"} .fa-shopping-cart:before{content:"\f07a"} .fa-folder:before{content:"\f07b"} .fa-folder-open:before{content:"\f07c"} .fa-arrows-v:before{content:"\f07d"} .fa-arrows-h:before{content:"\f07e"} .fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"} .fa-twitter-square:before{content:"\f081"} .fa-facebook-square:before{content:"\f082"} .fa-camera-retro:before{content:"\f083"} .fa-key:before{content:"\f084"} .fa-gears:before,.fa-cogs:before{content:"\f085"} .fa-comments:before{content:"\f086"} .fa-thumbs-o-up:before{content:"\f087"} .fa-thumbs-o-down:before{content:"\f088"} .fa-star-half:before{content:"\f089"} .fa-heart-o:before{content:"\f08a"} .fa-sign-out:before{content:"\f08b"} .fa-linkedin-square:before{content:"\f08c"} .fa-thumb-tack:before{content:"\f08d"} .fa-external-link:before{content:"\f08e"} .fa-sign-in:before{content:"\f090"} .fa-trophy:before{content:"\f091"} .fa-github-square:before{content:"\f092"} .fa-upload:before{content:"\f093"} .fa-lemon-o:before{content:"\f094"} .fa-phone:before{content:"\f095"} .fa-square-o:before{content:"\f096"} .fa-bookmark-o:before{content:"\f097"} .fa-phone-square:before{content:"\f098"} .fa-twitter:before{content:"\f099"} .fa-facebook-f:before,.fa-facebook:before{content:"\f09a"} .fa-github:before{content:"\f09b"} .fa-unlock:before{content:"\f09c"} .fa-credit-card:before{content:"\f09d"} .fa-feed:before,.fa-rss:before{content:"\f09e"} .fa-hdd-o:before{content:"\f0a0"} .fa-bullhorn:before{content:"\f0a1"} .fa-bell:before{content:"\f0f3"} .fa-certificate:before{content:"\f0a3"} .fa-hand-o-right:before{content:"\f0a4"} .fa-hand-o-left:before{content:"\f0a5"} .fa-hand-o-up:before{content:"\f0a6"} .fa-hand-o-down:before{content:"\f0a7"} .fa-arrow-circle-left:before{content:"\f0a8"} .fa-arrow-circle-right:before{content:"\f0a9"} .fa-arrow-circle-up:before{content:"\f0aa"} .fa-arrow-circle-down:before{content:"\f0ab"} .fa-globe:before{content:"\f0ac"} .fa-wrench:before{content:"\f0ad"} .fa-tasks:before{content:"\f0ae"} .fa-filter:before{content:"\f0b0"} .fa-briefcase:before{content:"\f0b1"} .fa-arrows-alt:before{content:"\f0b2"} .fa-group:before,.fa-users:before{content:"\f0c0"} .fa-chain:before,.fa-link:before{content:"\f0c1"} .fa-cloud:before{content:"\f0c2"} .fa-flask:before{content:"\f0c3"} .fa-cut:before,.fa-scissors:before{content:"\f0c4"} .fa-copy:before,.fa-files-o:before{content:"\f0c5"} .fa-paperclip:before{content:"\f0c6"} .fa-save:before,.fa-floppy-o:before{content:"\f0c7"} .fa-square:before{content:"\f0c8"} .fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"} .fa-list-ul:before{content:"\f0ca"} .fa-list-ol:before{content:"\f0cb"} .fa-strikethrough:before{content:"\f0cc"} .fa-underline:before{content:"\f0cd"} .fa-table:before{content:"\f0ce"} .fa-magic:before{content:"\f0d0"} .fa-truck:before{content:"\f0d1"} .fa-pinterest:before{content:"\f0d2"} .fa-pinterest-square:before{content:"\f0d3"} .fa-google-plus-square:before{content:"\f0d4"} .fa-google-plus:before{content:"\f0d5"} .fa-money:before{content:"\f0d6"} .fa-caret-down:before{content:"\f0d7"} .fa-caret-up:before{content:"\f0d8"} .fa-caret-left:before{content:"\f0d9"} .fa-caret-right:before{content:"\f0da"} .fa-columns:before{content:"\f0db"} .fa-unsorted:before,.fa-sort:before{content:"\f0dc"} .fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"} .fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"} .fa-envelope:before{content:"\f0e0"} .fa-linkedin:before{content:"\f0e1"} .fa-rotate-left:before,.fa-undo:before{content:"\f0e2"} .fa-legal:before,.fa-gavel:before{content:"\f0e3"} .fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"} .fa-comment-o:before{content:"\f0e5"} .fa-comments-o:before{content:"\f0e6"} .fa-flash:before,.fa-bolt:before{content:"\f0e7"} .fa-sitemap:before{content:"\f0e8"} .fa-umbrella:before{content:"\f0e9"} .fa-paste:before,.fa-clipboard:before{content:"\f0ea"} .fa-lightbulb-o:before{content:"\f0eb"} .fa-exchange:before{content:"\f0ec"} .fa-cloud-download:before{content:"\f0ed"} .fa-cloud-upload:before{content:"\f0ee"} .fa-user-md:before{content:"\f0f0"} .fa-stethoscope:before{content:"\f0f1"} .fa-suitcase:before{content:"\f0f2"} .fa-bell-o:before{content:"\f0a2"} .fa-coffee:before{content:"\f0f4"} .fa-cutlery:before{content:"\f0f5"} .fa-file-text-o:before{content:"\f0f6"} .fa-building-o:before{content:"\f0f7"} .fa-hospital-o:before{content:"\f0f8"} .fa-ambulance:before{content:"\f0f9"} .fa-medkit:before{content:"\f0fa"} .fa-fighter-jet:before{content:"\f0fb"} .fa-beer:before{content:"\f0fc"} .fa-h-square:before{content:"\f0fd"} .fa-plus-square:before{content:"\f0fe"} .fa-angle-double-left:before{content:"\f100"} .fa-angle-double-right:before{content:"\f101"} .fa-angle-double-up:before{content:"\f102"} .fa-angle-double-down:before{content:"\f103"} .fa-angle-left:before{content:"\f104"} .fa-angle-right:before{content:"\f105"} .fa-angle-up:before{content:"\f106"} .fa-angle-down:before{content:"\f107"} .fa-desktop:before{content:"\f108"} .fa-laptop:before{content:"\f109"} .fa-tablet:before{content:"\f10a"} .fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"} .fa-circle-o:before{content:"\f10c"} .fa-quote-left:before{content:"\f10d"} .fa-quote-right:before{content:"\f10e"} .fa-spinner:before{content:"\f110"} .fa-circle:before{content:"\f111"} .fa-mail-reply:before,.fa-reply:before{content:"\f112"} .fa-github-alt:before{content:"\f113"} .fa-folder-o:before{content:"\f114"} .fa-folder-open-o:before{content:"\f115"} .fa-smile-o:before{content:"\f118"} .fa-frown-o:before{content:"\f119"} .fa-meh-o:before{content:"\f11a"} .fa-gamepad:before{content:"\f11b"} .fa-keyboard-o:before{content:"\f11c"} .fa-flag-o:before{content:"\f11d"} .fa-flag-checkered:before{content:"\f11e"} .fa-terminal:before{content:"\f120"} .fa-code:before{content:"\f121"} .fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"} .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"} .fa-location-arrow:before{content:"\f124"} .fa-crop:before{content:"\f125"} .fa-code-fork:before{content:"\f126"} .fa-unlink:before,.fa-chain-broken:before{content:"\f127"} .fa-question:before{content:"\f128"} .fa-info:before{content:"\f129"} .fa-exclamation:before{content:"\f12a"} .fa-superscript:before{content:"\f12b"} .fa-subscript:before{content:"\f12c"} .fa-eraser:before{content:"\f12d"} .fa-puzzle-piece:before{content:"\f12e"} .fa-microphone:before{content:"\f130"} .fa-microphone-slash:before{content:"\f131"} .fa-shield:before{content:"\f132"} .fa-calendar-o:before{content:"\f133"} .fa-fire-extinguisher:before{content:"\f134"} .fa-rocket:before{content:"\f135"} .fa-maxcdn:before{content:"\f136"} .fa-chevron-circle-left:before{content:"\f137"} .fa-chevron-circle-right:before{content:"\f138"} .fa-chevron-circle-up:before{content:"\f139"} .fa-chevron-circle-down:before{content:"\f13a"} .fa-html5:before{content:"\f13b"} .fa-css3:before{content:"\f13c"} .fa-anchor:before{content:"\f13d"} .fa-unlock-alt:before{content:"\f13e"} .fa-bullseye:before{content:"\f140"} .fa-ellipsis-h:before{content:"\f141"} .fa-ellipsis-v:before{content:"\f142"} .fa-rss-square:before{content:"\f143"} .fa-play-circle:before{content:"\f144"} .fa-ticket:before{content:"\f145"} .fa-minus-square:before{content:"\f146"} .fa-minus-square-o:before{content:"\f147"} .fa-level-up:before{content:"\f148"} .fa-level-down:before{content:"\f149"} .fa-check-square:before{content:"\f14a"} .fa-pencil-square:before{content:"\f14b"} .fa-external-link-square:before{content:"\f14c"} .fa-share-square:before{content:"\f14d"} .fa-compass:before{content:"\f14e"} .fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"} .fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"} .fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"} .fa-euro:before,.fa-eur:before{content:"\f153"} .fa-gbp:before{content:"\f154"} .fa-dollar:before,.fa-usd:before{content:"\f155"} .fa-rupee:before,.fa-inr:before{content:"\f156"} .fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"} .fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"} .fa-won:before,.fa-krw:before{content:"\f159"} .fa-bitcoin:before,.fa-btc:before{content:"\f15a"} .fa-file:before{content:"\f15b"} .fa-file-text:before{content:"\f15c"} .fa-sort-alpha-asc:before{content:"\f15d"} .fa-sort-alpha-desc:before{content:"\f15e"} .fa-sort-amount-asc:before{content:"\f160"} .fa-sort-amount-desc:before{content:"\f161"} .fa-sort-numeric-asc:before{content:"\f162"} .fa-sort-numeric-desc:before{content:"\f163"} .fa-thumbs-up:before{content:"\f164"} .fa-thumbs-down:before{content:"\f165"} .fa-youtube-square:before{content:"\f166"} .fa-youtube:before{content:"\f167"} .fa-xing:before{content:"\f168"} .fa-xing-square:before{content:"\f169"} .fa-youtube-play:before{content:"\f16a"} .fa-dropbox:before{content:"\f16b"} .fa-stack-overflow:before{content:"\f16c"} .fa-instagram:before{content:"\f16d"} .fa-flickr:before{content:"\f16e"} .fa-adn:before{content:"\f170"} .fa-bitbucket:before{content:"\f171"} .fa-bitbucket-square:before{content:"\f172"} .fa-tumblr:before{content:"\f173"} .fa-tumblr-square:before{content:"\f174"} .fa-long-arrow-down:before{content:"\f175"} .fa-long-arrow-up:before{content:"\f176"} .fa-long-arrow-left:before{content:"\f177"} .fa-long-arrow-right:before{content:"\f178"} .fa-apple:before{content:"\f179"} .fa-windows:before{content:"\f17a"} .fa-android:before{content:"\f17b"} .fa-linux:before{content:"\f17c"} .fa-dribbble:before{content:"\f17d"} .fa-skype:before{content:"\f17e"} .fa-foursquare:before{content:"\f180"} .fa-trello:before{content:"\f181"} .fa-female:before{content:"\f182"} .fa-male:before{content:"\f183"} .fa-gittip:before,.fa-gratipay:before{content:"\f184"} .fa-sun-o:before{content:"\f185"} .fa-moon-o:before{content:"\f186"} .fa-archive:before{content:"\f187"} .fa-bug:before{content:"\f188"} .fa-vk:before{content:"\f189"} .fa-weibo:before{content:"\f18a"} .fa-renren:before{content:"\f18b"} .fa-pagelines:before{content:"\f18c"} .fa-stack-exchange:before{content:"\f18d"} .fa-arrow-circle-o-right:before{content:"\f18e"} .fa-arrow-circle-o-left:before{content:"\f190"} .fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"} .fa-dot-circle-o:before{content:"\f192"} .fa-wheelchair:before{content:"\f193"} .fa-vimeo-square:before{content:"\f194"} .fa-turkish-lira:before,.fa-try:before{content:"\f195"} .fa-plus-square-o:before{content:"\f196"} .fa-space-shuttle:before{content:"\f197"} .fa-slack:before{content:"\f198"} .fa-envelope-square:before{content:"\f199"} .fa-wordpress:before{content:"\f19a"} .fa-openid:before{content:"\f19b"} .fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"} .fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"} .fa-yahoo:before{content:"\f19e"} .fa-google:before{content:"\f1a0"} .fa-reddit:before{content:"\f1a1"} .fa-reddit-square:before{content:"\f1a2"} .fa-stumbleupon-circle:before{content:"\f1a3"} .fa-stumbleupon:before{content:"\f1a4"} .fa-delicious:before{content:"\f1a5"} .fa-digg:before{content:"\f1a6"} .fa-pied-piper-pp:before{content:"\f1a7"} .fa-pied-piper-alt:before{content:"\f1a8"} .fa-drupal:before{content:"\f1a9"} .fa-joomla:before{content:"\f1aa"} .fa-language:before{content:"\f1ab"} .fa-fax:before{content:"\f1ac"} .fa-building:before{content:"\f1ad"} .fa-child:before{content:"\f1ae"} .fa-paw:before{content:"\f1b0"} .fa-spoon:before{content:"\f1b1"} .fa-cube:before{content:"\f1b2"} .fa-cubes:before{content:"\f1b3"} .fa-behance:before{content:"\f1b4"} .fa-behance-square:before{content:"\f1b5"} .fa-steam:before{content:"\f1b6"} .fa-steam-square:before{content:"\f1b7"} .fa-recycle:before{content:"\f1b8"} .fa-automobile:before,.fa-car:before{content:"\f1b9"} .fa-cab:before,.fa-taxi:before{content:"\f1ba"} .fa-tree:before{content:"\f1bb"} .fa-spotify:before{content:"\f1bc"} .fa-deviantart:before{content:"\f1bd"} .fa-soundcloud:before{content:"\f1be"} .fa-database:before{content:"\f1c0"} .fa-file-pdf-o:before{content:"\f1c1"} .fa-file-word-o:before{content:"\f1c2"} .fa-file-excel-o:before{content:"\f1c3"} .fa-file-powerpoint-o:before{content:"\f1c4"} .fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"} .fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"} .fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"} .fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"} .fa-file-code-o:before{content:"\f1c9"} .fa-vine:before{content:"\f1ca"} .fa-codepen:before{content:"\f1cb"} .fa-jsfiddle:before{content:"\f1cc"} .fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"} .fa-circle-o-notch:before{content:"\f1ce"} .fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"} .fa-ge:before,.fa-empire:before{content:"\f1d1"} .fa-git-square:before{content:"\f1d2"} .fa-git:before{content:"\f1d3"} .fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"} .fa-tencent-weibo:before{content:"\f1d5"} .fa-qq:before{content:"\f1d6"} .fa-wechat:before,.fa-weixin:before{content:"\f1d7"} .fa-send:before,.fa-paper-plane:before{content:"\f1d8"} .fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"} .fa-history:before{content:"\f1da"} .fa-circle-thin:before{content:"\f1db"} .fa-header:before{content:"\f1dc"} .fa-paragraph:before{content:"\f1dd"} .fa-sliders:before{content:"\f1de"} .fa-share-alt:before{content:"\f1e0"} .fa-share-alt-square:before{content:"\f1e1"} .fa-bomb:before{content:"\f1e2"} .fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"} .fa-tty:before{content:"\f1e4"} .fa-binoculars:before{content:"\f1e5"} .fa-plug:before{content:"\f1e6"} .fa-slideshare:before{content:"\f1e7"} .fa-twitch:before{content:"\f1e8"} .fa-yelp:before{content:"\f1e9"} .fa-newspaper-o:before{content:"\f1ea"} .fa-wifi:before{content:"\f1eb"} .fa-calculator:before{content:"\f1ec"} .fa-paypal:before{content:"\f1ed"} .fa-google-wallet:before{content:"\f1ee"} .fa-cc-visa:before{content:"\f1f0"} .fa-cc-mastercard:before{content:"\f1f1"} .fa-cc-discover:before{content:"\f1f2"} .fa-cc-amex:before{content:"\f1f3"} .fa-cc-paypal:before{content:"\f1f4"} .fa-cc-stripe:before{content:"\f1f5"} .fa-bell-slash:before{content:"\f1f6"} .fa-bell-slash-o:before{content:"\f1f7"} .fa-trash:before{content:"\f1f8"} .fa-copyright:before{content:"\f1f9"} .fa-at:before{content:"\f1fa"} .fa-eyedropper:before{content:"\f1fb"} .fa-paint-brush:before{content:"\f1fc"} .fa-birthday-cake:before{content:"\f1fd"} .fa-area-chart:before{content:"\f1fe"} .fa-pie-chart:before{content:"\f200"} .fa-line-chart:before{content:"\f201"} .fa-lastfm:before{content:"\f202"} .fa-lastfm-square:before{content:"\f203"} .fa-toggle-off:before{content:"\f204"} .fa-toggle-on:before{content:"\f205"} .fa-bicycle:before{content:"\f206"} .fa-bus:before{content:"\f207"} .fa-ioxhost:before{content:"\f208"} .fa-angellist:before{content:"\f209"} .fa-cc:before{content:"\f20a"} .fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"} .fa-meanpath:before{content:"\f20c"} .fa-buysellads:before{content:"\f20d"} .fa-connectdevelop:before{content:"\f20e"} .fa-dashcube:before{content:"\f210"} .fa-forumbee:before{content:"\f211"} .fa-leanpub:before{content:"\f212"} .fa-sellsy:before{content:"\f213"} .fa-shirtsinbulk:before{content:"\f214"} .fa-simplybuilt:before{content:"\f215"} .fa-skyatlas:before{content:"\f216"} .fa-cart-plus:before{content:"\f217"} .fa-cart-arrow-down:before{content:"\f218"} .fa-diamond:before{content:"\f219"} .fa-ship:before{content:"\f21a"} .fa-user-secret:before{content:"\f21b"} .fa-motorcycle:before{content:"\f21c"} .fa-street-view:before{content:"\f21d"} .fa-heartbeat:before{content:"\f21e"} .fa-venus:before{content:"\f221"} .fa-mars:before{content:"\f222"} .fa-mercury:before{content:"\f223"} .fa-intersex:before,.fa-transgender:before{content:"\f224"} .fa-transgender-alt:before{content:"\f225"} .fa-venus-double:before{content:"\f226"} .fa-mars-double:before{content:"\f227"} .fa-venus-mars:before{content:"\f228"} .fa-mars-stroke:before{content:"\f229"} .fa-mars-stroke-v:before{content:"\f22a"} .fa-mars-stroke-h:before{content:"\f22b"} .fa-neuter:before{content:"\f22c"} .fa-genderless:before{content:"\f22d"} .fa-facebook-official:before{content:"\f230"} .fa-pinterest-p:before{content:"\f231"} .fa-whatsapp:before{content:"\f232"} .fa-server:before{content:"\f233"} .fa-user-plus:before{content:"\f234"} .fa-user-times:before{content:"\f235"} .fa-hotel:before,.fa-bed:before{content:"\f236"} .fa-viacoin:before{content:"\f237"} .fa-train:before{content:"\f238"} .fa-subway:before{content:"\f239"} .fa-medium:before{content:"\f23a"} .fa-yc:before,.fa-y-combinator:before{content:"\f23b"} .fa-optin-monster:before{content:"\f23c"} .fa-opencart:before{content:"\f23d"} .fa-expeditedssl:before{content:"\f23e"} .fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"} .fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"} .fa-battery-2:before,.fa-battery-half:before{content:"\f242"} .fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"} .fa-battery-0:before,.fa-battery-empty:before{content:"\f244"} .fa-mouse-pointer:before{content:"\f245"} .fa-i-cursor:before{content:"\f246"} .fa-object-group:before{content:"\f247"} .fa-object-ungroup:before{content:"\f248"} .fa-sticky-note:before{content:"\f249"} .fa-sticky-note-o:before{content:"\f24a"} .fa-cc-jcb:before{content:"\f24b"} .fa-cc-diners-club:before{content:"\f24c"} .fa-clone:before{content:"\f24d"} .fa-balance-scale:before{content:"\f24e"} .fa-hourglass-o:before{content:"\f250"} .fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"} .fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"} .fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"} .fa-hourglass:before{content:"\f254"} .fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"} .fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"} .fa-hand-scissors-o:before{content:"\f257"} .fa-hand-lizard-o:before{content:"\f258"} .fa-hand-spock-o:before{content:"\f259"} .fa-hand-pointer-o:before{content:"\f25a"} .fa-hand-peace-o:before{content:"\f25b"} .fa-trademark:before{content:"\f25c"} .fa-registered:before{content:"\f25d"} .fa-creative-commons:before{content:"\f25e"} .fa-gg:before{content:"\f260"} .fa-gg-circle:before{content:"\f261"} .fa-tripadvisor:before{content:"\f262"} .fa-odnoklassniki:before{content:"\f263"} .fa-odnoklassniki-square:before{content:"\f264"} .fa-get-pocket:before{content:"\f265"} .fa-wikipedia-w:before{content:"\f266"} .fa-safari:before{content:"\f267"} .fa-chrome:before{content:"\f268"} .fa-firefox:before{content:"\f269"} .fa-opera:before{content:"\f26a"} .fa-internet-explorer:before{content:"\f26b"} .fa-tv:before,.fa-television:before{content:"\f26c"} .fa-contao:before{content:"\f26d"} .fa-500px:before{content:"\f26e"} .fa-amazon:before{content:"\f270"} .fa-calendar-plus-o:before{content:"\f271"} .fa-calendar-minus-o:before{content:"\f272"} .fa-calendar-times-o:before{content:"\f273"} .fa-calendar-check-o:before{content:"\f274"} .fa-industry:before{content:"\f275"} .fa-map-pin:before{content:"\f276"} .fa-map-signs:before{content:"\f277"} .fa-map-o:before{content:"\f278"} .fa-map:before{content:"\f279"} .fa-commenting:before{content:"\f27a"} .fa-commenting-o:before{content:"\f27b"} .fa-houzz:before{content:"\f27c"} .fa-vimeo:before{content:"\f27d"} .fa-black-tie:before{content:"\f27e"} .fa-fonticons:before{content:"\f280"} .fa-reddit-alien:before{content:"\f281"} .fa-edge:before{content:"\f282"} .fa-credit-card-alt:before{content:"\f283"} .fa-codiepie:before{content:"\f284"} .fa-modx:before{content:"\f285"} .fa-fort-awesome:before{content:"\f286"} .fa-usb:before{content:"\f287"} .fa-product-hunt:before{content:"\f288"} .fa-mixcloud:before{content:"\f289"} .fa-scribd:before{content:"\f28a"} .fa-pause-circle:before{content:"\f28b"} .fa-pause-circle-o:before{content:"\f28c"} .fa-stop-circle:before{content:"\f28d"} .fa-stop-circle-o:before{content:"\f28e"} .fa-shopping-bag:before{content:"\f290"} .fa-shopping-basket:before{content:"\f291"} .fa-hashtag:before{content:"\f292"} .fa-bluetooth:before{content:"\f293"} .fa-bluetooth-b:before{content:"\f294"} .fa-percent:before{content:"\f295"} .fa-gitlab:before{content:"\f296"} .fa-wpbeginner:before{content:"\f297"} .fa-wpforms:before{content:"\f298"} .fa-envira:before{content:"\f299"} .fa-universal-access:before{content:"\f29a"} .fa-wheelchair-alt:before{content:"\f29b"} .fa-question-circle-o:before{content:"\f29c"} .fa-blind:before{content:"\f29d"} .fa-audio-description:before{content:"\f29e"} .fa-volume-control-phone:before{content:"\f2a0"} .fa-braille:before{content:"\f2a1"} .fa-assistive-listening-systems:before{content:"\f2a2"} .fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"} .fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"} .fa-glide:before{content:"\f2a5"} .fa-glide-g:before{content:"\f2a6"} .fa-signing:before,.fa-sign-language:before{content:"\f2a7"} .fa-low-vision:before{content:"\f2a8"} .fa-viadeo:before{content:"\f2a9"} .fa-viadeo-square:before{content:"\f2aa"} .fa-snapchat:before{content:"\f2ab"} .fa-snapchat-ghost:before{content:"\f2ac"} .fa-snapchat-square:before{content:"\f2ad"} .fa-pied-piper:before{content:"\f2ae"} .fa-first-order:before{content:"\f2b0"} .fa-yoast:before{content:"\f2b1"} .fa-themeisle:before{content:"\f2b2"} .fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"} .fa-fa:before,.fa-font-awesome:before{content:"\f2b4"} .fa-handshake-o:before{content:"\f2b5"} .fa-envelope-open:before{content:"\f2b6"} .fa-envelope-open-o:before{content:"\f2b7"} .fa-linode:before{content:"\f2b8"} .fa-address-book:before{content:"\f2b9"} .fa-address-book-o:before{content:"\f2ba"} .fa-vcard:before,.fa-address-card:before{content:"\f2bb"} .fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"} .fa-user-circle:before{content:"\f2bd"} .fa-user-circle-o:before{content:"\f2be"} .fa-user-o:before{content:"\f2c0"} .fa-id-badge:before{content:"\f2c1"} .fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"} .fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"} .fa-quora:before{content:"\f2c4"} .fa-free-code-camp:before{content:"\f2c5"} .fa-telegram:before{content:"\f2c6"} .fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"} .fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"} .fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"} .fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"} .fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"} .fa-shower:before{content:"\f2cc"} .fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"} .fa-podcast:before{content:"\f2ce"} .fa-window-maximize:before{content:"\f2d0"} .fa-window-minimize:before{content:"\f2d1"} .fa-window-restore:before{content:"\f2d2"} .fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"} .fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"} .fa-bandcamp:before{content:"\f2d5"} .fa-grav:before{content:"\f2d6"} .fa-etsy:before{content:"\f2d7"} .fa-imdb:before{content:"\f2d8"} .fa-ravelry:before{content:"\f2d9"} .fa-eercast:before{content:"\f2da"} .fa-microchip:before{content:"\f2db"} .fa-snowflake-o:before{content:"\f2dc"} .fa-superpowers:before{content:"\f2dd"} .fa-wpexplorer:before{content:"\f2de"} .fa-meetup:before{content:"\f2e0"} .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0} .sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
diff --git a/src/main/resources/static/css/gijgo.css b/src/main/resources/static/css/gijgo.css
new file mode 100644
index 0000000..10dec32
--- /dev/null
+++ b/src/main/resources/static/css/gijgo.css
@@ -0,0 +1,2704 @@
+.gj-button {
+ background-color: #f5f5f5;
+ border: 1px solid #ddd;
+ color: #000;
+ border-radius: 3px;
+ padding: 6px 10px;
+ cursor: pointer;
+}
+
+.gj-unselectable {
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.gj-row {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+
+.gj-margin-left-5 {
+ margin-left: 5px;
+}
+
+.gj-margin-left-10 {
+ margin-left: 10px;
+}
+
+.gj-width-full {
+ width: 100%;
+}
+
+.gj-cursor-pointer {
+ cursor: pointer;
+}
+
+.gj-text-align-center {
+ text-align: center;
+}
+
+.gj-font-size-16 {
+ font-size: 16px;
+}
+
+.gj-hidden {
+ display: none;
+}
+
+/** Material Design */
+.gj-button-md {
+ background: 0 0;
+ border: none;
+ border-radius: 2px;
+ color: rgba(0, 0, 0, 0.87);
+ position: relative;
+ height: 36px;
+ margin: 0;
+ min-width: 64px;
+ padding: 0 16px;
+ display: inline-block;
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 1rem;
+ font-weight: 500;
+ text-transform: uppercase;
+ letter-spacing: 0;
+ overflow: hidden;
+ will-change: box-shadow;
+ transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),color .2s cubic-bezier(.4,0,.2,1);
+ outline: none;
+ cursor: pointer;
+ text-decoration: none;
+ text-align: center;
+ line-height: 36px;
+ vertical-align: middle;
+ overflow: hidden;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+
+.gj-button-md:hover {
+ background-color: rgba(158,158,158,.2);
+}
+
+.gj-button-md:disabled {
+ color: rgba(0,0,0,.26);
+ background: 0 0;
+}
+
+.gj-button-md .material-icons,
+.gj-button-md .gj-icon {
+ vertical-align: middle;
+ /*font-size: 1.3rem;
+ margin-right: 4px;*/
+}
+
+.gj-button-md.gj-button-md-icon {
+ width: 24px;
+ height: 31px;
+ min-width: 24px;
+ padding: 0px;
+ display: table;
+}
+
+.gj-button-md.gj-button-md-icon .material-icons,
+.gj-button-md.gj-button-md-icon .gj-icon {
+ display: table-cell;
+ margin-right: 0px;
+ width: 24px;
+ height: 24px;
+}
+
+.gj-button-md.active {
+ background-color: rgba(158,158,158,.4);
+}
+
+.gj-button-md-group {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+}
+
+.gj-textbox-md {
+ border: none;
+ border-bottom: 1px solid rgba(0,0,0,.42);
+ display: block;
+ font-family: "Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ line-height: 16px;
+ padding: 4px 0px;
+ margin: 0;
+ width: 100%;
+ background: 0 0;
+ text-align: left;
+ color: rgba(0,0,0,.87);
+}
+
+.gj-textbox-md:focus,
+.gj-textbox-md:active {
+ border-bottom: 2px solid rgba(0,0,0,.42);
+ outline: none;
+}
+
+.gj-textbox-md::placeholder {
+ color: #8e8e8e;
+}
+
+.gj-textbox-md:-ms-input-placeholder {
+ color: #8e8e8e;
+}
+
+.gj-textbox-md::-ms-input-placeholder {
+ color: #8e8e8e;
+}
+
+.gj-md-spacer-24 {
+ min-width: 24px;
+ width: 24px;
+ display: inline-block;
+}
+
+.gj-md-spacer-32 {
+ min-width: 32px;
+ width: 32px;
+ display: inline-block;
+}
+
+.gj-modal {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1203;
+ display: none;
+ overflow: hidden;
+ -webkit-overflow-scrolling: touch;
+ outline: 0;
+ background-color: rgba(0, 0, 0, 0.54118);
+ transition: 200ms ease opacity;
+ will-change: opacity;
+}
+
+/* List */
+ul.gj-list li [data-role="wrapper"] {
+ display: table;
+ width: 100%;
+}
+
+ul.gj-list li [data-role="checkbox"] {
+ display: table-cell;
+ vertical-align:middle;
+ text-align:center;
+}
+
+ul.gj-list li [data-role="image"] {
+ display: table-cell;
+ vertical-align:middle;
+ text-align:center;
+}
+
+ul.gj-list li [data-role="display"] {
+ display: table-cell;
+ vertical-align:middle;
+ cursor: pointer;
+}
+
+ul.gj-list li [data-role="display"]:empty:before {
+ content: "\200b"; /* unicode zero width space character */
+}
+
+/* List - Bootstrap */
+ul.gj-list-bootstrap {
+ padding-left: 0px;
+ margin-bottom: 0px;
+}
+
+ul.gj-list-bootstrap li {
+ padding: 0px;
+}
+
+ul.gj-list-bootstrap li [data-role="wrapper"] {
+ padding: 0px 10px;
+}
+
+ul.gj-list-bootstrap li [data-role="checkbox"] {
+ width: 24px;
+ padding: 3px;
+}
+
+ul.gj-list-bootstrap li [data-role="image"] {
+ width: 24px;
+ height: 24px;
+}
+
+ul.gj-list-bootstrap li [data-role="display"] {
+ padding: 8px 0px 8px 4px;
+}
+
+.list-group-item.active ul li, .list-group-item.active:focus ul li, .list-group-item.active:hover ul li {
+ text-shadow: none;
+ color:initial;
+}
+
+/* List - Material Design */
+ul.gj-list-md {
+ padding: 0px;
+ list-style: none;
+ list-style-type: none;
+ line-height: 24px;
+ letter-spacing: 0;
+ color: #616161; /* Gray 700 */
+}
+
+ul.gj-list-md li {
+ display: list-item;
+ list-style-type: none;
+ padding: 0px;
+ min-height: unset;
+ box-sizing: border-box;
+ align-items: center;
+ cursor: default;
+ overflow: hidden;
+
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+}
+
+ul.gj-list-md li [data-role="checkbox"] {
+ height: 24px;
+ width: 24px;
+}
+
+ul.gj-list-md li [data-role="image"] {
+ height: 24px;
+ width: 24px;
+}
+
+ul.gj-list-md li [data-role="display"] {
+ padding: 8px 0px 8px 5px;
+ order: 0;
+ flex-grow: 2;
+ text-decoration: none;
+ box-sizing: border-box;
+ align-items: center;
+ text-align: left;
+ color: rgba(0,0,0,.87);
+}
+
+ul.gj-list-md li.disabled>[data-role="wrapper"]>[data-role="display"] {
+ color: #9E9E9E; /* Gray 500 */
+}
+
+.gj-list-md-active {
+ background: #e0e0e0;
+ color: #3f51b5;
+}
+
+
+/* Picker */
+.gj-picker {
+ position: absolute;
+ z-index: 1203;
+ background-color: #fff;
+}
+
+.gj-picker .selected {
+ color: #fff;
+}
+
+/* Material Design */
+.gj-picker-md {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0,0,0,.87);
+ border: 1px solid #E0E0E0;
+}
+
+.gj-modal .gj-picker-md {
+ border: 0px;
+}
+
+.gj-picker-md [role="header"] {
+ color: rgba(255, 255, 255, 0.54);
+ display: flex;
+ background: #4A3600;
+ align-items: baseline;
+ user-select: none;
+ justify-content: center;
+}
+
+.gj-picker-md [role="footer"] {
+ float: right;
+ padding: 10px;
+}
+
+.gj-picker-md [role="footer"] button.gj-button-md {
+ color: #4A3600;
+ font-weight: bold;
+ font-size: 13px;
+}
+
+/* Bootstrap */
+.gj-picker-bootstrap {
+ border-radius: 4px;
+ border: 1px solid #E0E0E0;
+}
+
+.gj-picker-bootstrap .selected {
+ color: #888;
+}
+
+.gj-picker-bootstrap [role="header"] {
+ background: #eee;
+ color: #AAA;
+}
+@font-face {
+ font-family: 'gijgo-material';
+ src: url('../fonts/gijgo-material.eot?235541');
+ src: url('../fonts/gijgo-material.eot?235541#iefix') format('embedded-opentype'), url('../fonts/gijgo-material.ttf?235541') format('truetype'), url('../fonts/gijgo-material.woff?235541') format('woff'), url('../fonts/gijgo-material.svg?235541#gijgo-material') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+.gj-icon {
+ /* use !important to prevent issues with browser extensions that change fonts */
+ font-family: 'gijgo-material' !important;
+ font-size: 24px;
+ speak: none;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ /* Enable Ligatures ================ */
+ letter-spacing: 0;
+ -webkit-font-feature-settings: "liga";
+ -moz-font-feature-settings: "liga=1";
+ -moz-font-feature-settings: "liga";
+ -ms-font-feature-settings: "liga" 1;
+ font-feature-settings: "liga";
+ -webkit-font-variant-ligatures: discretionary-ligatures;
+ font-variant-ligatures: discretionary-ligatures;
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.gj-icon.undo:before {
+ content: "\e900";
+}
+
+.gj-icon.vertical-align-top:before {
+ content: "\e901";
+}
+
+.gj-icon.vertical-align-center:before {
+ content: "\e902";
+}
+
+.gj-icon.vertical-align-bottom:before {
+ content: "\e903";
+}
+
+.gj-icon.arrow-dropup:before {
+ content: "\e904";
+}
+
+.gj-icon.clock:before {
+ content: "\e905";
+}
+
+.gj-icon.refresh:before {
+ content: "\e906";
+}
+
+.gj-icon.last-page:before {
+ content: "\e907";
+}
+
+.gj-icon.first-page:before {
+ content: "\e908";
+}
+
+.gj-icon.cancel:before {
+ content: "\e909";
+}
+
+.gj-icon.clear:before {
+ content: "\e90a";
+}
+
+.gj-icon.check-circle:before {
+ content: "\e90b";
+}
+
+.gj-icon.delete:before {
+ content: "\e90c";
+}
+
+.gj-icon.arrow-upward:before {
+ content: "\e90d";
+}
+
+.gj-icon.arrow-forward:before {
+ content: "\e90e";
+}
+
+.gj-icon.arrow-downward:before {
+ content: "\e90f";
+}
+
+.gj-icon.arrow-back:before {
+ content: "\e910";
+}
+
+.gj-icon.list-numbered:before {
+ content: "\e911";
+}
+
+.gj-icon.list-bulleted:before {
+ content: "\e912";
+}
+
+.gj-icon.indent-increase:before {
+ content: "\e913";
+}
+
+.gj-icon.indent-decrease:before {
+ content: "\e914";
+}
+
+.gj-icon.redo:before {
+ content: "\e915";
+}
+
+.gj-icon.align-right:before {
+ content: "\e916";
+}
+
+.gj-icon.align-left:before {
+ content: "\e917";
+}
+
+.gj-icon.align-justify:before {
+ content: "\e918";
+}
+
+.gj-icon.align-center:before {
+ content: "\e919";
+}
+
+.gj-icon.strikethrough:before {
+ content: "\e91a";
+}
+
+.gj-icon.italic:before {
+ content: "\e91b";
+}
+
+.gj-icon.underlined:before {
+ content: "\e91c";
+}
+
+.gj-icon.bold:before {
+ content: "\e91d";
+}
+
+.gj-icon.arrow-dropdown:before {
+ content: "\e91e";
+}
+
+.gj-icon.done:before {
+ content: "\e91f";
+}
+
+.gj-icon.pencil:before {
+ content: "\e920";
+}
+
+.gj-icon.minus:before {
+ content: "\e921";
+}
+
+.gj-icon.plus:before {
+ content: "\e922";
+}
+
+.gj-icon.chevron-up:before {
+ content: "\e923";
+}
+
+.gj-icon.chevron-right:before {
+ content: "\e924";
+}
+
+.gj-icon.chevron-down:before {
+ content: "\e925";
+}
+
+.gj-icon.chevron-left:before {
+ content: "\e926";
+}
+
+.gj-icon.event:before {
+ content: "\e927";
+}
+.gj-draggable {
+ cursor: move;
+}
+.gj-resizable-handle {
+ position: absolute;
+ font-size: 0.1px;
+ display: block;
+ -ms-touch-action: none;
+ touch-action: none;
+ z-index: 1203;
+}
+
+.gj-resizable-n {
+ cursor: n-resize;
+ height: 7px;
+ width: 100%;
+ top: -5px;
+ left: 0;
+}
+.gj-resizable-e {
+ cursor: e-resize;
+ width: 7px;
+ right: -5px;
+ top: 0;
+ height: 100%;
+}
+.gj-resizable-s {
+ cursor: s-resize;
+ height: 7px;
+ width: 100%;
+ bottom: -5px;
+ left: 0;
+}
+.gj-resizable-w {
+ cursor: w-resize;
+ width: 7px;
+ left: -5px;
+ top: 0;
+ height: 100%;
+}
+.gj-resizable-se {
+ cursor: se-resize;
+ width: 12px;
+ height: 12px;
+ right: 1px;
+ bottom: 1px;
+}
+.gj-resizable-sw {
+ cursor: sw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ bottom: -5px;
+}
+.gj-resizable-nw {
+ cursor: nw-resize;
+ width: 9px;
+ height: 9px;
+ left: -5px;
+ top: -5px;
+}
+.gj-resizable-ne {
+ cursor: ne-resize;
+ width: 9px;
+ height: 9px;
+ right: -5px;
+ top: -5px;
+}
+
+.gj-dialog-footer {
+ position: absolute;
+ bottom: 0px;
+ width: 100%;
+ margin-top: 0px;
+}
+
+.gj-dialog-scrollable [data-role="body"] {
+ overflow-x: hidden;
+ overflow-y: scroll;
+}
+
+/** Bootstrap 3 **/
+.gj-dialog-bootstrap {
+ overflow: hidden;
+ z-index: 1202;
+}
+
+.gj-dialog-bootstrap [data-role="title"] {
+ display: inline;
+}
+.gj-dialog-bootstrap [data-role="close"] {
+ line-height: 1.42857143;
+}
+
+/** Bootstrap 4 **/
+.gj-dialog-bootstrap4 {
+ overflow: hidden;
+ z-index: 1202;
+}
+
+.gj-dialog-bootstrap4 [data-role="title"] {
+ display: inline;
+}
+.gj-dialog-bootstrap4 [data-role="close"] {
+ line-height: 1.5;
+}
+
+/** Material Design **/
+.gj-dialog-md {
+ background-color: #FFF;
+ overflow: hidden;
+ border: none;
+ box-shadow: 0 11px 15px -7px rgba(0,0,0,.2), 0 24px 38px 3px rgba(0,0,0,.14), 0 9px 46px 8px rgba(0,0,0,.12);
+ box-sizing: border-box;
+ position: relative;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-background-clip: padding-box;
+ background-clip: padding-box;
+ outline: 0;
+ z-index: 1202;
+}
+
+.gj-dialog-md-header {
+ padding: 24px 24px 0px 24px;
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+}
+
+.gj-dialog-md-title {
+ margin: 0;
+ font-weight: 400;
+ display: inline;
+ line-height: 28px;
+ font-size: 20px;
+}
+
+.gj-dialog-md-close {
+ -webkit-appearance: none;
+ padding: 0;
+ cursor: pointer;
+ background: 0 0;
+ border: 0;
+ float: right;
+ line-height: 28px;
+ font-size: 28px;
+}
+
+.gj-dialog-md-body {
+ padding: 20px 24px 24px 24px;
+ color: rgba(0,0,0,.54);
+ font-family: "Helvetica","Arial",sans-serif;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 20px;
+}
+
+.gj-dialog-md-footer {
+ padding: 8px 8px 8px 24px;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-direction: row-reverse;
+ -ms-flex-direction: row-reverse;
+ flex-direction: row-reverse;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+
+ box-sizing: border-box;
+}
+
+.gj-dialog-md-footer>*:first-child {
+ margin-right: 0;
+}
+
+.gj-dialog-md-footer>* {
+ margin-right: 8px;
+ height: 36px;
+}
+DIV.gj-grid-wrapper {
+ margin: auto;
+ position: relative;
+ clear:both;
+ z-index: 1;
+}
+
+TABLE.gj-grid {
+ margin: auto;
+ border-collapse: collapse;
+ width: 100%;
+ table-layout: fixed;
+}
+
+TABLE.gj-grid THEAD TH [data-role="selectAll"] {
+ margin: auto;
+}
+
+TABLE.gj-grid THEAD TH [data-role="title"] {
+ display: inline-block;
+}
+
+TABLE.gj-grid THEAD TH [data-role="sorticon"] {
+ display: inline-block;
+}
+
+TABLE.gj-grid THEAD TH {
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
+TABLE.gj-grid.autogrow-header-row THEAD TH {
+ overflow: auto;
+ text-overflow: initial;
+ white-space: pre-wrap;
+ -ms-word-break: break-word;
+ word-break: break-word;
+}
+
+TABLE.gj-grid > tbody > tr > td {
+ overflow: hidden;
+ position: relative;
+}
+
+table.gj-grid tbody div[data-role="display"] {
+ vertical-align: middle;
+ text-indent: 0;
+ white-space: pre-wrap;
+ -ms-word-break: break-word;
+ word-break: break-word;
+}
+
+table.gj-grid.fixed-body-rows tbody div[data-role="display"] {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ -ms-word-break: initial;
+ word-break: initial;
+}
+
+table.gj-grid tfoot DIV[data-role="display"] {
+ vertical-align: middle;
+ text-indent: 0;
+ display: flex;
+}
+
+TABLE.gj-grid .fa {
+ padding: 2px;
+}
+
+TABLE.gj-grid > tbody > tr > td > div {
+ padding: 2px;
+ overflow: hidden;
+}
+
+DIV.gj-grid-wrapper DIV.gj-grid-loading-cover
+{
+ background: #BBBBBB;
+ opacity: 0.5;
+ position: absolute;
+ vertical-align: middle;
+}
+
+DIV.gj-grid-wrapper DIV.gj-grid-loading-text
+{
+ position: absolute;
+ font-weight: bold;
+}
+
+/* Bootstrap Theme */
+table.gj-grid-bootstrap thead th {
+ background-color: #f5f5f5;
+ vertical-align:middle;
+}
+
+table.gj-grid-bootstrap thead th [data-role="sorticon"] {
+ margin-left: 5px;
+}
+
+table.gj-grid-bootstrap thead th [data-role="sorticon"] i.gj-icon,
+table.gj-grid-bootstrap thead th [data-role="sorticon"] i.material-icons {
+ position: absolute;
+ font-size: 20px;
+ top: 15px;
+}
+
+table.gj-grid-bootstrap tbody tr td div[data-role="display"] {
+ padding: 0px;
+}
+
+.gj-grid-bootstrap-4 .gj-checkbox-bootstrap {
+ display: inline-block;
+ padding-top: 2px;
+}
+
+.gj-grid-bootstrap-4 tbody tr.active {
+ background-color: rgba(0,0,0,.075);
+}
+
+/* Material Design Theme */
+.gj-grid-md {
+ position: relative;
+ border: 1px solid #e0e0e0;
+ border-collapse: collapse;
+ white-space: nowrap;
+ font-size: 13px;
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ background-color: #fff;
+}
+
+.gj-grid-md td:first-of-type, .gj-grid-md th:first-of-type {
+ padding-left: 24px;
+}
+
+.gj-grid-md th {
+ position: relative;
+ vertical-align: bottom;
+ font-weight: 700;
+ line-height: 31px;
+ letter-spacing: 0;
+ height: 56px;
+ font-size: 12px;
+ color: rgba(0,0,0,.54);
+ padding-bottom: 8px;
+ box-sizing: border-box;
+ padding: 12px 18px;
+ text-align: right;
+}
+
+.gj-grid-md td {
+ position: relative;
+ height: 48px;
+ border-top: 1px solid #e0e0e0;
+ border-bottom: 1px solid #e0e0e0;
+ padding: 12px 18px;
+ box-sizing: border-box;
+ text-align: left;
+ color: rgba(0,0,0,.87);
+}
+
+.gj-grid-md tbody tr {
+ position: relative;
+ height: 48px;
+ transition-duration: .28s;
+ transition-timing-function: cubic-bezier(.4,0,.2,1);
+ transition-property: background-color;
+}
+
+.gj-grid-md tbody tr:hover {
+ background-color: #EEEEEE; /* Gray 200 */
+}
+
+.gj-grid-md tbody tr.gj-grid-md-select {
+ background-color: #F5F5F5; /* Grey 100 */
+}
+
+
+table.gj-grid-md thead th [data-role="sorticon"] {
+ margin-left: 5px;
+}
+
+table.gj-grid-md thead th [data-role="sorticon"] i.gj-icon,
+table.gj-grid-md thead th [data-role="sorticon"] i.material-icons {
+ position: absolute;
+ font-size: 16px;
+ top: 19px;
+}
+
+table.gj-grid-md thead th.gj-grid-select-all {
+ padding-bottom: 3px;
+}
+/* Hide all prioritized columns by default */
+@media only all {
+ th.display-1120,
+ td.display-1120,
+ th.display-960,
+ td.display-960,
+ th.display-800,
+ td.display-800,
+ th.display-640,
+ td.display-640,
+ th.display-480,
+ td.display-480,
+ th.display-320,
+ td.display-320 {
+ display: none;
+ }
+}
+
+/* Show at 320px (20em x 16px) */
+@media screen and (min-width: 20em) {
+ TABLE.gj-grid-bootstrap th.display-320,
+ TABLE.gj-grid-bootstrap td.display-320 {
+ display: table-cell;
+ }
+}
+/* Show at 480px (30em x 16px) */
+@media screen and (min-width: 30em) {
+ TABLE.gj-grid-bootstrap th.display-480,
+ TABLE.gj-grid-bootstrap td.display-480 {
+ display: table-cell;
+ }
+}
+/* Show at 640px (40em x 16px) */
+@media screen and (min-width: 40em) {
+ TABLE.gj-grid-bootstrap th.display-640,
+ TABLE.gj-grid-bootstrap td.display-640 {
+ display: table-cell;
+ }
+}
+/* Show at 800px (50em x 16px) */
+@media screen and (min-width: 50em) {
+ TABLE.gj-grid-bootstrap th.display-800,
+ TABLE.gj-grid-bootstrap td.display-800 {
+ display: table-cell;
+ }
+}
+/* Show at 960px (60em x 16px) */
+@media screen and (min-width: 60em) {
+ TABLE.gj-grid-bootstrap th.display-960,
+ TABLE.gj-grid-bootstrap td.display-960 {
+ display: table-cell;
+ }
+}
+/* Show at 1,120px (70em x 16px) */
+@media screen and (min-width: 70em) {
+ TABLE.gj-grid-bootstrap th.display-1120,
+ TABLE.gj-grid-bootstrap td.display-1120 {
+ display: table-cell;
+ }
+}
+
+/* Material Design Theme */
+.gj-grid-md tfoot tr th {
+ padding-right: 14px;
+}
+
+.gj-grid-md tfoot tr[data-role="pager"] .gj-grid-mdl-pager-label {
+ padding-left: 5px;
+ padding-right: 5px;
+}
+
+.gj-grid-md tfoot tr[data-role="pager"] .gj-dropdown-md {
+ margin-left: 12px;
+}
+
+.gj-grid-md tfoot tr[data-role="pager"] .gj-dropdown-md [role="presenter"] {
+ font-size: 12px;
+ font-weight: bold;
+ color: rgba(0,0,0,.54);
+}
+
+.gj-grid-md tfoot tr[data-role="pager"] .gj-dropdown-md [role="presenter"] [role="display"] {
+ text-align: right;
+}
+
+.gj-grid-md tfoot tr[data-role="pager"] .gj-grid-md-limit-select {
+ margin-left: 10px;
+ font-size: 12px;
+ font-weight: bold;
+ color: rgba(0,0,0,.54);
+}
+
+/* Bootstrap */
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th {
+ line-height: 30px;
+ background-color: #f5f5f5;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th > div > div {
+ margin-right: 5px;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th > div > button {
+ margin-right: 5px;
+}
+
+.gj-grid-bootstrap-4 tfoot tr[data-role="pager"] th > div button {
+ height: 34px;
+}
+
+.gj-grid-bootstrap-4 tfoot tr[data-role="pager"] th div .gj-dropdown-bootstrap-4 .gj-dropdown-expander-mi .gj-icon {
+ top: 5px;
+}
+
+.gj-grid-bootstrap-3 tfoot tr[data-role="pager"] th > div > input {
+ margin-right: 5px;
+ width: 40px;
+ text-align: right;
+ display: inline-block;
+ font-weight: bold;
+}
+
+.gj-grid-bootstrap-4 tfoot tr[data-role="pager"] th > div > div.input-group {
+ width: 40px;
+}
+
+.gj-grid-bootstrap-4 tfoot tr[data-role="pager"] th > div > div.input-group input {
+ text-align: right;
+ font-weight: bold;
+ height: 34px;
+ padding-top: 2px;
+ padding-bottom: 6px;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th > div > select {
+ display: inline-block;
+ margin-right: 5px;
+ width: 60px;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th .gj-dropdown-bootstrap .gj-list-bootstrap [data-role="display"] {
+ line-height: 14px;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th .gj-dropdown-bootstrap [role="presenter"] [role="display"] {
+ font-weight: bold;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th .gj-dropdown-bootstrap-3 [role="presenter"] {
+ padding: 2px 8px;
+}
+
+.gj-grid-bootstrap tfoot tr[data-role="pager"] th .gj-dropdown-bootstrap-4 [role="presenter"] {
+ padding: 1px 8px;
+}
+.gj-grid thead tr th div.gj-grid-column-resizer-wrapper {
+ position: relative;
+ width: 100%;
+ height: 0px;
+ top: 0px;
+ left: 0px;
+ padding: 0px;
+}
+
+span.gj-grid-column-resizer {
+ position: absolute;
+ right: 0px;
+ width: 10px;
+ top: -100px;
+ height: 300px;
+ z-index: 1203;
+ cursor: e-resize;
+}
+
+.gj-grid-resize-cursor {
+ cursor: e-resize;
+}
+.gj-grid-md tbody tr.gj-grid-top-border td {
+ border-top: 2px solid #777;
+}
+.gj-grid-md tbody tr.gj-grid-bottom-border td {
+ border-bottom: 2px solid #777;
+}
+
+.gj-grid-bootstrap tbody tr.gj-grid-top-border td {
+ border-top: 2px solid #777;
+}
+.gj-grid-bootstrap tbody tr.gj-grid-bottom-border td {
+ border-bottom: 2px solid #777;
+}
+.gj-grid-md thead tr th.gj-grid-left-border,
+.gj-grid-md tbody tr td.gj-grid-left-border
+{
+ border-left: 3px solid #777;
+}
+.gj-grid-md thead tr th.gj-grid-right-border,
+.gj-grid-md tbody tr td.gj-grid-right-border
+{
+ border-right: 3px solid #777;
+}
+
+.gj-grid-bootstrap thead tr th.gj-grid-left-border,
+.gj-grid-bootstrap tbody tr td.gj-grid-left-border
+{
+ border-left: 5px solid #ddd;
+}
+.gj-grid-bootstrap thead tr th.gj-grid-right-border,
+.gj-grid-bootstrap tbody tr td.gj-grid-right-border
+{
+ border-right: 5px solid #ddd;
+}
+.gj-dirty {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ border-style: solid;
+ border-width: 3px;
+ border-color: #f00 transparent transparent #f00;
+ padding: 0;
+ overflow: hidden;
+ vertical-align: top;
+}
+
+/* Material Design */
+.gj-grid-md tbody tr td.gj-grid-management-column {
+ padding: 3px;
+}
+
+.gj-grid-md tbody tr td[data-mode="edit"] {
+ padding: 0px 18px;
+}
+
+.gj-grid-md tbody .gj-dropdown-md [role="presenter"] [role="display"] {
+ padding: 0px;
+}
+
+/* Bootstrap */
+.gj-grid-bootstrap tbody tr td[data-mode="edit"] {
+ padding: 0px;
+}
+
+.gj-grid-bootstrap tbody tr td[data-mode="edit"] [data-role="edit"] {
+ padding: 0px;
+}
+
+/* Bootstrap 3 */
+.gj-grid-bootstrap-3 tbody tr td.gj-grid-management-column {
+ padding: 3px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] {
+ height: 38px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] [data-role="edit"] input[type="text"] {
+ height: 37px;
+ padding: 8px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] .gj-dropdown-bootstrap [role="presenter"] {
+ border: 0px;
+ border-radius: 0px;
+ height: 37px;
+ padding-left: 8px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap {
+ height: 37px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="input"] {
+ height: 37px;
+ border:0px;
+ border-radius: 0px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="right-icon"] {
+ border:0px;
+ border-radius: 0px;
+}
+
+.gj-grid-bootstrap-3 tbody tr td[data-mode="edit"] .gj-checkbox-bootstrap {
+ display: inline-block;
+ padding-top: 10px;
+ height: 32px;
+}
+
+/* Bootstrap 4 */
+.gj-grid-bootstrap-4 tbody tr td.gj-grid-management-column {
+ padding: 6px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] [data-role="edit"] input[type="text"] {
+ height: 48px;
+ padding-left: 12px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-dropdown-bootstrap [role="presenter"] {
+ border: 0px;
+ border-radius: 0px;
+ height: 48px;
+ padding-left: 12px;
+ font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-dropdown-bootstrap-4 [role="expander"].gj-dropdown-expander-mi .gj-icon,
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-dropdown-bootstrap-4 [role="expander"].gj-dropdown-expander-mi .material-icons {
+ top: 13px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap {
+ height: 48px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="input"] {
+ height: 48px;
+ border:0px;
+ border-radius: 0px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="right-icon"] {
+ background-color: #fff;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="right-icon"] button {
+ border: 0px;
+ border-radius: 0px;
+ width: 43px;
+ position: relative;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="right-icon"] .gj-icon,
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-datepicker-bootstrap [role="right-icon"] .material-icons {
+ top: 13px;
+ left: 10px;
+ font-size: 24px;
+}
+
+.gj-grid-bootstrap-4 tbody tr td[data-mode="edit"] .gj-checkbox-bootstrap {
+ display: inline-block;
+ padding-top: 15px;
+ height: 42px;
+}
+.gj-grid-md thead tr[data-role="filter"] th {
+ border-top: 1px solid #e0e0e0;
+}
+
+div.gj-grid-wrapper div.gj-grid-bootstrap-toolbar {
+ background-color: #f5f5f5;
+ padding: 8px;
+ font-weight: bold;
+ border: 1px solid #ddd;
+}
+
+div.gj-grid-wrapper div.gj-grid-bootstrap-4-toolbar {
+ background-color: #f5f5f5;
+ padding: 12px;
+ font-weight: bold;
+ border: 1px solid #ddd;
+}
+
+div.gj-grid-wrapper div.gj-grid-md-toolbar {
+ font-weight: bold;
+ font-size: 24px;
+ font-family: "Helvetica","Arial",sans-serif;
+ background-color: rgb(255, 255, 255);
+
+ border-top: 1px solid #e0e0e0;
+ border-left: 1px solid #e0e0e0;
+ border-right: 1px solid #e0e0e0;
+ border-bottom: 0px;
+ border-collapse: collapse;
+
+ padding: 0 18px 0px 18px;
+ line-height: 56px;
+}
+table.gj-grid-scrollable tbody {
+ overflow-y: auto;
+ overflow-x: hidden;
+ display: block;
+}
+
+/* Material Design */
+table.gj-grid-md.gj-grid-scrollable {
+ border-bottom: 0px;
+}
+
+table.gj-grid-md.gj-grid-scrollable tbody {
+ border-right: 1px solid #e0e0e0;
+ border-bottom: 1px solid #e0e0e0;
+}
+
+table.gj-grid-md.gj-grid-scrollable tfoot {
+ border-bottom: 1px solid #e0e0e0;
+}
+
+/* Bootstrap 3 */
+table.gj-grid-bootstrap.gj-grid-scrollable {
+ border-bottom: 0px;
+}
+
+table.gj-grid-bootstrap.gj-grid-scrollable tbody {
+ border-right: 1px solid #ddd;
+ border-bottom: 1px solid #ddd;
+}
+
+table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role="row"]:first-child td {
+ border-top: 0px;
+}
+
+table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role="row"] td:first-child {
+ border-left: 0px;
+}
+
+table.gj-grid-bootstrap.gj-grid-scrollable tbody tr[data-role="row"] td:last-child {
+ border-right: 0px;
+}
+
+table.gj-grid-bootstrap.gj-grid-scrollable tfoot {
+ border-bottom: 1px solid #ddd;
+}
+
+ul.gj-list li [data-role="spacer"] {
+ display: table-cell;
+}
+
+ul.gj-list li [data-role="expander"] {
+ display: table-cell;
+ vertical-align:middle;
+ text-align:center;
+ cursor: pointer;
+}
+
+[data-type="tree"] ul li [data-role="expander"].gj-tree-material-icons-expander {
+ width: 24px;
+}
+
+[data-type="tree"] ul li [data-role="expander"].gj-tree-font-awesome-expander {
+ width: 24px;
+}
+
+[data-type="tree"] ul li [data-role="expander"].gj-tree-glyphicons-expander {
+ width: 24px;
+}
+
+[data-type="tree"] ul li [data-role="expander"].gj-tree-glyphicons-expander .glyphicon {
+ top: 4px;
+ height: 24px;
+}
+
+/* Bootstrap Theme */
+.gj-tree-bootstrap-3 ul.gj-list-bootstrap li {
+ border: 0px;
+ border-radius: 0px;
+ color: #333;
+}
+
+.gj-tree-bootstrap-3 ul.gj-list-bootstrap li.active {
+ color: #fff;
+}
+
+.gj-tree-bootstrap-3 ul.gj-list-bootstrap li.disabled {
+ color: #777;
+ background-color: #eee;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li {
+ border: 0px;
+ border-radius: 0px;
+ color: #212529;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li.active {
+ color: #fff;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li.disabled {
+ color: #868e96;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li ul.gj-list-bootstrap {
+ width: 100%;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li {
+ border: 1px solid #ddd;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li {
+ border-left: 0px;
+ border-right: 0px;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li:first-child {
+ border-top-left-radius: 4px;
+ border-top-right-radius: 4px;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li:last-child {
+ border-bottom-left-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li:first-child {
+ border-top-left-radius: 0px;
+ border-top-right-radius: 0px;
+}
+
+.gj-tree-bootstrap-border ul.gj-list-bootstrap li ul.gj-list-bootstrap li:last-child {
+ border-bottom: 0px;
+ border-bottom-left-radius: 0px;
+ border-bottom-right-radius: 0px;
+}
+
+ul.gj-list-bootstrap li [data-role="expander"].gj-tree-material-icons-expander {
+ padding-top: 8px;
+ padding-bottom: 4px;
+}
+
+ul.gj-list-bootstrap li [data-role="expander"].gj-tree-material-icons-expander .gj-icon {
+ width: 24px;
+ height: 24px;
+}
+
+/* Material Design Theme */
+ul.gj-list-md li.disabled > [data-role="wrapper"] > [data-role="expander"] {
+ color: #9E9E9E; /* Gray 500 */
+}
+
+.gj-tree-md-border ul.gj-list-md li {
+ border: 1px solid #616161; /* Gray 700 */
+ margin-bottom: -1px;
+}
+
+.gj-tree-md-border ul.gj-list-md li ul.gj-list-md li {
+ border-left: 0px;
+ border-right: 0px;
+}
+
+.gj-tree-md-border ul.gj-list-md li ul.gj-list-md li:last-child {
+ border-bottom: 0px;
+}
+.gj-tree-drop-above {
+ border-top: 1px solid #000;
+}
+
+.gj-tree-drop-below {
+ border-bottom: 1px solid #000;
+}
+
+.gj-tree-bootstrap-3 ul.gj-list-bootstrap li [data-role="wrapper"].drop-above {
+ border-top: 2px solid #000;
+}
+
+.gj-tree-bootstrap-3 ul.gj-list-bootstrap li [data-role="wrapper"].drop-below {
+ border-bottom: 2px solid #000;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li [data-role="wrapper"].drop-above {
+ border-top: 2px solid #000;
+}
+
+.gj-tree-bootstrap-4 ul.gj-list-bootstrap li [data-role="wrapper"].drop-below {
+ border-bottom: 2px solid #000;
+}
+
+.gj-tree-drag-el {
+ padding: 0px;
+ margin: 0px;
+ z-index: 1203;
+}
+
+.gj-tree-drag-el li {
+ padding: 0px;
+ margin: 0px;
+}
+
+.gj-tree-drag-el [data-role="wrapper"] {
+ cursor: move;
+ display: table;
+}
+
+.gj-tree-drag-el [data-role="indicator"] {
+ width: 14px;
+ padding: 0px 3px;
+ display: table-cell;
+ vertical-align: middle;
+ text-align: center;
+}
+
+.gj-tree-bootstrap-drag-el li.list-group-item {
+ border: 0px;
+ background: unset;
+}
+
+.gj-tree-bootstrap-drag-el [data-role="indicator"] {
+ width: 24px;
+ height: 24px;
+ padding: 0px;
+}
+
+.gj-tree-md-drag-el [data-role="indicator"] {
+ width: 24px;
+ height: 24px;
+ padding: 0px;
+}
+/* Bootstrap */
+.gj-checkbox-bootstrap {
+ min-width: 0;
+ font-size: 0;
+ font-weight: normal;
+ margin: 0px;
+ text-align: center;
+ width: 18px;
+ height: 18px;
+ position: relative;
+ display: inline;
+}
+
+.gj-checkbox-bootstrap input[type="checkbox"] {
+ display: none;
+ margin-bottom: -12px;
+}
+
+.gj-checkbox-bootstrap span {
+ background: #fff;
+ display: block;
+ content: " ";
+ width: 18px;
+ height: 18px;
+ line-height: 11px;
+ font-size: 11px;
+ padding: 2px;
+ color: #555555;
+ border: 1px solid #CCCCCC;
+ border-radius: 3px;
+ transition: box-shadow 0.2s linear, border-color 0.2s linear;
+ cursor: pointer;
+ margin: auto;
+}
+
+.gj-checkbox-bootstrap input[type="checkbox"]:focus + span:before {
+ outline: 0;
+ box-shadow: 0 0 0 0 #66afe9, 0 0 6px rgba(102, 175, 233, .6);
+ border-color: #66afe9;
+}
+
+.gj-checkbox-bootstrap input[type="checkbox"][disabled] + span {
+ opacity: 0.6;
+ cursor: not-allowed;
+}
+
+/* Bootstrap 4 */
+.gj-checkbox-bootstrap.gj-checkbox-bootstrap-4 span {
+ line-height: 16px;
+ padding: 0px;
+}
+
+.gj-checkbox-bootstrap-4.gj-checkbox-material-icons input[type="checkbox"]:checked + span:after {
+ font-size: 16px;
+}
+
+.gj-checkbox-bootstrap-4.gj-checkbox-material-icons input[type="checkbox"]:indeterminate + span:after {
+ font-size: 16px;
+}
+
+/* Material Design */
+.gj-checkbox-md {
+ min-width: 0;
+ font-size: 0;
+ font-weight: normal;
+ margin: 0px;
+ text-align: center;
+ width: 16px;
+ height: 16px;
+ position: relative;
+}
+
+.gj-checkbox-md input[type="checkbox"] {
+ display: none;
+ margin-bottom: -12px;
+}
+
+.gj-checkbox-md span {
+ display: inline-block;
+ box-sizing: border-box;
+ width: 16px;
+ height: 16px;
+ margin: 0;
+ cursor: pointer;
+ overflow: hidden;
+ border: 2px solid #616161; /* Gray 700 */
+ border-radius: 2px;
+ z-index: 2;
+}
+
+.gj-checkbox-md input[type="checkbox"]:checked + span {
+ border: 2px solid #536DFE; /* Indigo A200 */
+}
+
+.gj-checkbox-md input[type="checkbox"]:checked + span:after {
+ color: #FFF;
+ background-color: #536DFE; /* Indigo A200 */
+ position: absolute;
+ left: 1px;
+ top: -15px;
+}
+
+.gj-checkbox-md input[type="checkbox"]:indeterminate + span {
+ border: 2px solid #616161; /* Gray 700 */
+}
+
+.gj-checkbox-md input[type="checkbox"]:indeterminate + span:after {
+ color: #616161;/*color: rgba(0, 0, 0, 1);*/
+ position: absolute;
+ left: 1px;
+ top: -15px;
+}
+
+.gj-checkbox-md input[type="checkbox"][disabled] + span {
+ border: 2px solid #9E9E9E;
+}
+
+.gj-checkbox-md input[type="checkbox"][disabled] + span:after {
+ background-color: #9E9E9E;
+}
+
+.gj-checkbox-md input[type="checkbox"][disabled]:indeterminate + span:after {
+ color: #FFFFFF;
+}
+
+/* Material Icons */
+.gj-checkbox-material-icons input[type="checkbox"]:checked + span:after {
+ content: "\e91f";
+ font-size: 14px;
+ font-weight: bold;
+ white-space: pre;
+}
+
+.gj-checkbox-material-icons input[type="checkbox"]:indeterminate + span:after {
+ content: "\e921";
+ font-size: 14px;
+ font-weight: bold;
+ white-space: pre;
+}
+
+/* Glyphicons */
+.gj-checkbox-glyphicons input[type="checkbox"]:checked + span:after {
+ display: inline-block;
+ font-family: 'Glyphicons Halflings';
+ content: "\e013 ";
+}
+
+.gj-checkbox-glyphicons input[type="checkbox"]:indeterminate + span:after {
+ display: inline-block;
+ font-family: 'Glyphicons Halflings';
+ content: "\2212 ";
+ padding-right: 1px;
+}
+
+/* fontawesome */
+.gj-checkbox-fontawesome .fa {
+ font-size: 14px;
+}
+.gj-checkbox-bootstrap.gj-checkbox-fontawesome .fa {
+ line-height: 18px;
+}
+
+.gj-checkbox-fontawesome input[type="checkbox"]:checked + span:before {
+ content: "\f00c ";
+}
+
+.gj-checkbox-fontawesome input[type="checkbox"]:indeterminate + span:before {
+ content: "\f068 ";
+}
+.gj-editor [role="body"] {
+ overflow: auto;
+ outline: 0px solid transparent;
+ box-sizing: border-box;
+}
+
+/* Material Design */
+.gj-editor-md {
+ padding: 7px;
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 14px;
+ font-weight: 500;
+ letter-spacing: 0;
+ border: 1px solid rgba(158,158,158,.2);
+}
+
+.gj-editor-md [role="toolbar"] {
+ margin-bottom: 7px;
+}
+
+.gj-editor-md [role="toolbar"] .gj-button-md {
+ min-width: 54px;
+ margin-right: 5px;
+}
+
+.gj-editor-md [role="toolbar"] .gj-button-md .gj-icon {
+ width: 24px;
+ height: 24px;
+}
+
+.gj-editor-md [role="body"] {
+ border: 1px solid rgba(158,158,158,.2);
+}
+
+.gj-editor-md p {
+ margin: 0;
+ padding: 0;
+}
+
+.gj-editor-md blockquote {
+ font-size: 14px;
+}
+
+/* Bootstrap */
+.gj-editor-bootstrap {
+ padding: 7px;
+ border: 1px solid #eceeef;
+}
+
+.gj-editor-bootstrap [role="toolbar"] {
+ margin-bottom: 7px;
+}
+
+.gj-editor-bootstrap [role="toolbar"] .btn-group {
+ margin-right: 10px;
+}
+
+.gj-editor-bootstrap [role="toolbar"] button {
+ height: 36px;
+}
+
+.gj-editor-bootstrap [role="body"] {
+ border: 1px solid #eceeef;
+}
+
+.gj-editor-bootstrap p {
+ margin: 0;
+ padding: 0;
+}
+
+.gj-editor-bootstrap blockquote {
+ font-size: 14px;
+}
+.gj-dropdown {
+ position: relative;
+ border-collapse: separate;
+}
+
+.gj-dropdown [role="presenter"] {
+ display: table;
+ cursor: pointer;
+ outline: none;
+ position: relative;
+}
+
+.gj-dropdown [role="presenter"] [role="display"] {
+ display: table-cell;
+ text-align: left;
+ width: 100%;
+}
+
+.gj-dropdown [role="presenter"] [role="expander"] {
+ display: table-cell;
+ vertical-align:middle;
+ text-align:center;
+ width: 24px;
+ height: 24px;
+}
+
+/* Material Design */
+.gj-dropdown-md [role="presenter"] {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0,0,0,.87);
+ padding: 0px;
+ border: 0px;
+ border-bottom: 1px solid rgba(0,0,0,.42);
+ background: transparent;
+}
+
+.gj-dropdown-md [role="presenter"]:focus,
+.gj-dropdown-md [role="presenter"]:active {
+ border-bottom: 2px solid rgba(0,0,0,.42);
+}
+
+.gj-dropdown-md [role="presenter"] [role="display"] {
+ padding: 4px 0px;
+ line-height: 18px;
+}
+
+.gj-dropdown-md [role="presenter"] [role="display"] .placeholder {
+ color: #8e8e8e;
+}
+
+.gj-dropdown-list-md {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ background-color: #f5f5f5;
+ color: #000;
+ margin: 0px;
+ z-index: 1203;
+}
+
+.gj-dropdown-list-md li:hover, .gj-dropdown-list-md li.active {
+ background-color: #eee;
+}
+
+/* Bootstrap */
+.gj-dropdown-bootstrap [role="presenter"] [role="display"] {
+ padding-right: 5px;
+}
+
+.gj-dropdown-bootstrap [role="presenter"] [role="expander"] {
+ padding-left: 5px;
+}
+
+.gj-dropdown-bootstrap [role="presenter"] [role="expander"].gj-dropdown-expander-mi {
+ width: 24px;
+}
+
+.gj-dropdown-bootstrap-3 [role="presenter"] [role="display"] {
+ line-height: 20px;
+}
+
+.gj-dropdown-bootstrap-3 [role="presenter"] [role="display"] .placeholder {
+ color: #9999b3;
+}
+
+.gj-dropdown-bootstrap-3 [role="presenter"] [role="expander"] {
+ width: 20px;
+ height: 20px;
+}
+
+.gj-dropdown-bootstrap-3 [role="presenter"] [role="expander"].gj-dropdown-expander-mi .gj-icon,
+.gj-dropdown-bootstrap-3 [role="presenter"] [role="expander"].gj-dropdown-expander-mi .material-icons {
+ top: 5px;
+ right: 10px;
+ position: absolute;
+}
+
+.gj-dropdown-bootstrap-4 [role="presenter"] {
+ border: 1px solid #ced4da;
+}
+
+.gj-dropdown-bootstrap-4 [role="presenter"] [role="display"] {
+ line-height: 24px;
+}
+
+.gj-dropdown-bootstrap-4 [role="presenter"] [role="expander"].gj-dropdown-expander-mi .gj-icon,
+.gj-dropdown-bootstrap-4 [role="presenter"] [role="expander"].gj-dropdown-expander-mi .material-icons {
+ top: 7px;
+ right: 10px;
+ position: absolute;
+}
+
+.gj-dropdown-list-bootstrap {
+ position: absolute;
+ top: 32px;
+ left: 0px;
+ margin: 0px;
+ z-index: 1203;
+}
+.gj-datepicker [role="input"]::-ms-clear {
+ display: none;
+}
+
+.gj-datepicker [role="right-icon"] {
+ cursor: pointer;
+}
+
+.gj-picker div[role="navigator"] {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+}
+
+.gj-picker div[role="navigator"] div {
+ cursor: pointer;
+ position: relative;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+}
+
+.gj-picker div[role="navigator"] div[role="period"] {
+ width: 100%;
+ text-align: center;
+}
+
+/* Material Design */
+.gj-datepicker-md {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0,0,0,.87);
+ position: relative;
+}
+
+.gj-datepicker-md [role="right-icon"] {
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ font-size: 24px;
+}
+
+.gj-datepicker-md.small .gj-textbox-md {
+ font-size: 14px;
+}
+
+.gj-datepicker-md.small .gj-icon {
+ font-size: 22px;
+}
+
+.gj-datepicker-md.large .gj-textbox-md {
+ font-size: 18px;
+}
+
+.gj-datepicker-md.large .gj-icon {
+ font-size: 28px;
+}
+
+.gj-picker-md.datepicker [role="header"] {
+ padding: 20px 20px;
+ display: block;
+}
+
+.gj-picker-md.datepicker [role="header"] [role="year"] {
+ font-size: 17px;
+ padding-bottom: 5px;
+ cursor: pointer;
+}
+
+.gj-picker-md.datepicker [role="header"] [role="date"] {
+ font-size: 36px;
+ cursor: pointer;
+}
+
+.gj-picker-md div[role="navigator"] {
+ height: 42px;
+ line-height: 42px;
+}
+
+.gj-picker div[role="navigator"] div[role="period"] {
+ font-weight: bold;
+ font-size: 15px;
+}
+
+.gj-picker-md div[role="navigator"] div:first-child {
+ max-width: 42px;
+}
+
+.gj-picker-md div[role="navigator"] div:last-child {
+ max-width: 42px;
+}
+
+.gj-picker-md div[role="navigator"] div i.gj-icon,
+.gj-picker-md div[role="navigator"] div i.material-icons {
+ position: absolute;
+ top: 8px;
+}
+
+.gj-picker-md div[role="navigator"] div:first-child i.gj-icon,
+.gj-picker-md div[role="navigator"] div:first-child i.material-icons {
+ left: 10px;
+}
+
+.gj-picker-md div[role="navigator"] div:last-child i.gj-icon,
+.gj-picker-md div[role="navigator"] div:last-child i.material-icons {
+ right: 11px;
+}
+
+.gj-picker-md table thead {
+ color: #9E9E9E; /* Gray 500 */
+}
+
+.gj-picker-md table tr th div,
+.gj-picker-md table tr td div {
+ display: block;
+ width: 40px;
+ height: 40px;
+ line-height: 40px;
+ font-size: 13px;
+ text-align: center;
+ vertical-align: middle;
+}
+
+[type="year"].gj-picker-md table tr td div,
+[type="decade"].gj-picker-md table tr td div,
+[type="century"].gj-picker-md table tr td div {
+ width: 73px;
+ height: 73px;
+ line-height: 73px;
+ cursor: pointer;
+}
+
+.gj-picker-md table tr td.gj-cursor-pointer div:hover {
+ background: #EEEEEE;
+ border-radius: 50%;
+ color: rgba(0,0,0,.87);
+}
+
+.gj-picker-md table tr td.other-month div,
+.gj-picker-md table tr td.disabled div {
+ color: #BDBDBD; /* Gray 400 */
+}
+
+.gj-picker-md table tr td.focused div {
+ background: #E0E0E0; /* Gray 300 */
+ border-radius: 50%;
+}
+
+.gj-picker-md table tr td.today div {
+ color: #4A3600;
+}
+
+.gj-picker-md table tr td.selected.gj-cursor-pointer div {
+ color: #FFFFFF;
+ background: #4A3600; /* Blue 700 */
+ border-radius: 50%;
+}
+
+.gj-picker-md table tr td.calendar-week div {
+ font-weight: bold;
+}
+
+/* Bootstrap */
+.gj-datepicker-bootstrap :focus,
+.gj-datepicker-bootstrap :active {
+ box-shadow: none;
+}
+
+.gj-picker-bootstrap {
+ border: 1px solid rgba(0,0,0,0.15);
+ border-radius: 4px;
+ padding: 4px;
+}
+
+.gj-modal .gj-picker-bootstrap {
+ padding: 0px;
+}
+
+.gj-picker-bootstrap.datepicker [role="header"] {
+ padding: 10px 20px;
+ display: block;
+}
+
+.gj-picker-bootstrap.datepicker [role="header"] [role="year"] {
+ font-size: 15px;
+ cursor: pointer;
+}
+
+.gj-picker-bootstrap [role="header"] [role="date"] {
+ font-size: 24px;
+ cursor: pointer;
+}
+
+.gj-modal .gj-picker-bootstrap.datepicker [role="body"] {
+ padding: 15px;
+}
+
+.gj-picker-bootstrap div[role="navigator"] {
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+}
+
+.gj-picker-bootstrap div[role="navigator"] div:first-child {
+ max-width: 30px;
+}
+
+.gj-picker-bootstrap div[role="navigator"] div:last-child {
+ max-width: 30px;
+}
+
+.gj-picker-bootstrap table tr td div,
+.gj-picker-bootstrap table tr th div {
+ display: block;
+ width: 30px;
+ height: 30px;
+ line-height: 30px;
+ text-align: center;
+ vertical-align: middle;
+}
+
+[type="year"].gj-picker-bootstrap table tr td div,
+[type="decade"].gj-picker-bootstrap table tr td div,
+[type="century"].gj-picker-bootstrap table tr td div {
+ width: 53px;
+ height: 53px;
+ line-height: 53px;
+ cursor: pointer;
+}
+
+.gj-picker-bootstrap table tr th div i,
+.gj-picker-bootstrap table tr th div span {
+ line-height: 30px;
+}
+
+.gj-picker-bootstrap div[role="navigator"] .gj-icon,
+.gj-picker-bootstrap div[role="navigator"] .material-icons {
+ margin: 3px;
+}
+
+.gj-picker-bootstrap table tr td.focused div,
+.gj-picker-bootstrap table tr td.gj-cursor-pointer div:hover {
+ background: #EEEEEE;
+ border-radius: 4px;
+ color: #212529;
+}
+
+.gj-picker-bootstrap table tr td.today div {
+ color: #204d74;
+ font-weight: bold;
+}
+
+.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
+ color: #fff;
+ background-color: #204d74;
+ border-color: #122b40;
+ border-radius: 4px;
+}
+
+.gj-picker-bootstrap table tr td.other-month div,
+.gj-picker-bootstrap table tr td.disabled div {
+ color: #777;
+}
+
+/* Bootstrap 3 */
+.gj-datepicker-bootstrap span[role="right-icon"].input-group-addon {
+ border-top-left-radius: 0px;
+ border-bottom-left-radius: 0px;
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ border-left: 0px;
+ position: relative;
+ /*width: 38px;*/
+}
+
+.gj-datepicker-bootstrap span[role="right-icon"].input-group-addon .gj-icon,
+.gj-datepicker-bootstrap span[role="right-icon"].input-group-addon .material-icons {
+ position: absolute;
+ top: 7px;
+ left: 7px;
+}
+
+/* Bootstrap 4 */
+.gj-datepicker-bootstrap [role="right-icon"] button {
+ width: 38px;
+ position: relative;
+ border: 1px solid #ced4da;
+}
+
+.gj-datepicker-bootstrap [role="right-icon"] button:hover {
+ color: #6c757d;
+ background-color: transparent;
+}
+
+.gj-datepicker-bootstrap.input-group-sm [role="right-icon"] button {
+ width: 30px;
+}
+
+.gj-datepicker-bootstrap.input-group-lg [role="right-icon"] button {
+ width: 48px;
+}
+
+.gj-datepicker-bootstrap [role="right-icon"] button .gj-icon,
+.gj-datepicker-bootstrap [role="right-icon"] button .material-icons {
+ position: absolute;
+ font-size: 21px;
+ top: 9px;
+ left: 9px;
+}
+
+.gj-datepicker-bootstrap.input-group-sm [role="right-icon"] button .gj-icon,
+.gj-datepicker-bootstrap.input-group-sm [role="right-icon"] button .material-icons {
+ top: 6px;
+ left: 6px;
+ font-size: 19px;
+}
+
+.gj-datepicker-bootstrap.input-group-lg [role="right-icon"] button .gj-icon,
+.gj-datepicker-bootstrap.input-group-lg [role="right-icon"] button .material-icons {
+ font-size: 27px;
+ top: 10px;
+ left: 10px;
+}
+.gj-timepicker [role="input"]::-ms-clear {
+ display: none;
+}
+
+.gj-timepicker [role="right-icon"] {
+ cursor: pointer;
+}
+
+.gj-picker.timepicker [role="header"] {
+ font-size: 58px;
+ padding: 20px 0;
+ line-height: 58px;
+
+ display: flex;
+ align-items: baseline;
+ user-select: none;
+ justify-content: center;
+}
+
+.gj-picker.timepicker [role="header"] div {
+ cursor: pointer;
+ width: 66px;
+ text-align: right;
+}
+
+.gj-picker [role="header"] [role="mode"] {
+ position: relative;
+ width: 0px;
+}
+
+.gj-picker [role="header"] [role="mode"] span {
+ position: absolute;
+ left: 7px;
+ line-height: 18px;
+ font-size: 18px;
+}
+
+.gj-picker [role="header"] [role="mode"] span[role="am"] {
+ top: 7px;
+}
+
+.gj-picker [role="header"] [role="mode"] span[role="pm"] {
+ bottom: 7px;
+}
+
+.gj-picker [role="body"] [role="dial"] {
+ width: 256px;
+ color: rgba(0, 0, 0, 0.87);
+ height: 256px;
+ position: relative;
+ background: #eeeeee;
+ border-radius: 50%;
+ margin: 10px;
+}
+
+.gj-picker [role="body"] [role="hour"] {
+ top: calc(50% - 16px);
+ left: calc(50% - 16px);
+ width: 32px;
+ height: 32px;
+ cursor: pointer;
+ position: absolute;
+ font-size: 14px;
+ text-align: center;
+ line-height: 32px;
+ user-select: none;
+ pointer-events: none;
+}
+
+.gj-picker [role="body"] [role="hour"].selected {
+ color: rgba(255, 255, 255, 1);
+}
+
+.gj-picker [role="body"] [role="arrow"] {
+ top: calc(50% - 1px);
+ left: 50%;
+ width: calc(50% - 20px);
+ height: 2px;
+ position: absolute;
+ pointer-events: none;
+ transform-origin: left center;
+ transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
+ width: calc(50% - 52px);
+}
+
+.gj-picker .arrow-begin {
+ top: -3px;
+ left: -4px;
+ width: 8px;
+ height: 8px;
+ position: absolute;
+ border-radius: 50%;
+}
+
+.gj-picker .arrow-end {
+ top: -15px;
+ right: -16px;
+ width: 0;
+ height: 0;
+ position: absolute;
+ box-sizing: content-box;
+ border-width: 16px;
+ border-radius: 50%;
+}
+
+/* Material Design */
+.gj-timepicker-md {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0,0,0,.87);
+ position: relative;
+}
+
+.gj-timepicker-md.small .gj-textbox-md {
+ font-size: 14px;
+}
+
+.gj-timepicker-md.small .gj-icon {
+ font-size: 22px;
+}
+
+.gj-timepicker-md.large .gj-textbox-md {
+ font-size: 18px;
+}
+
+.gj-timepicker-md.large .gj-icon {
+ font-size: 28px;
+}
+
+.gj-timepicker-md [role="right-icon"] {
+ cursor: pointer;
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ font-size: 24px;
+}
+
+.gj-picker-md .arrow-begin {
+ background-color: #4A3600;
+}
+.gj-picker-md .arrow-end {
+ border: 16px solid #4A3600;
+}
+
+.gj-picker-md [role="body"] [role="arrow"] {
+ background-color: #4A3600;
+}
+
+/* Bootstrap */
+.gj-timepicker-bootstrap :focus,
+.gj-timepicker-bootstrap :active {
+ box-shadow: none;
+}
+
+.gj-picker-bootstrap [role="body"] [role="arrow"] {
+ background-color: #888;
+}
+
+.gj-picker-bootstrap .arrow-begin {
+ background-color: #888;
+}
+
+.gj-picker-bootstrap .arrow-end {
+ border: 16px solid #888;
+}
+
+/* Bootstrap 3 */
+.gj-timepicker-bootstrap .input-group-addon {
+ border-top-left-radius: 0px;
+ border-bottom-left-radius: 0px;
+ border-top-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+ border-left: 0px;
+ position: relative;
+ width: 38px;
+}
+
+.gj-timepicker-bootstrap.input-group-sm .input-group-addon {
+ width: 30px;
+}
+
+.gj-timepicker-bootstrap.input-group-lg .input-group-addon {
+ width: 46px;
+}
+
+.gj-timepicker-bootstrap .input-group-addon .gj-icon,
+.gj-timepicker-bootstrap .input-group-addon .material-icons {
+ position: absolute;
+ font-size: 21px;
+ top: 6px;
+ left: 8px;
+}
+
+.gj-timepicker-bootstrap.input-group-sm .input-group-addon .gj-icon,
+.gj-timepicker-bootstrap.input-group-sm .input-group-addon .material-icons {
+ font-size: 19px;
+ top: 5px;
+ left: 5px;
+}
+
+.gj-timepicker-bootstrap.input-group-lg .input-group-addon .gj-icon,
+.gj-timepicker-bootstrap.input-group-lg .input-group-addon .material-icons {
+ font-size: 27px;
+ top: 10px;
+ left: 10px;
+}
+
+/* Bootstrap 4 */
+.gj-timepicker-bootstrap [role="right-icon"] button {
+ width: 38px;
+ position: relative;
+}
+
+.gj-timepicker-bootstrap.input-group-sm [role="right-icon"] button {
+ width: 30px;
+}
+
+.gj-timepicker-bootstrap.input-group-lg [role="right-icon"] button {
+ width: 48px;
+}
+
+.gj-timepicker-bootstrap [role="right-icon"] button .gj-icon,
+.gj-timepicker-bootstrap [role="right-icon"] button .material-icons {
+ position: absolute;
+ font-size: 21px;
+ top: 7px;
+ left: 9px;
+}
+
+.gj-timepicker-bootstrap.input-group-sm [role="right-icon"] button .gj-icon,
+.gj-timepicker-bootstrap.input-group-sm [role="right-icon"] button .material-icons {
+ top: 4px;
+ left: 6px;
+ font-size: 19px;
+}
+
+.gj-timepicker-bootstrap.input-group-lg [role="right-icon"] button .gj-icon,
+.gj-timepicker-bootstrap.input-group-lg [role="right-icon"] button .material-icons {
+ font-size: 27px;
+ top: 8px;
+ left: 10px;
+}
+.gj-picker.datetimepicker [role="header"] [role="date"] {
+ padding-bottom: 5px;
+ text-align: center;
+ cursor: pointer;
+}
+
+.gj-picker [role="switch"] {
+ align-items: baseline;
+ user-select: none;
+ position: relative;
+}
+
+.gj-picker [role="switch"] [role="calendarMode"] {
+ cursor: pointer;
+ position: absolute;
+ bottom: 2px;
+ left: 0px;
+}
+
+.gj-picker [role="switch"] [role="time"] {
+ width: 100%;
+ text-align: center;
+}
+
+.gj-picker [role="switch"] [role="time"] div {
+ display: inline;
+ cursor: pointer;
+}
+
+.gj-picker [role="switch"] [role="calendarMode"] {
+ cursor: pointer;
+}
+
+.gj-picker [role="switch"] [role="clockMode"] {
+ position: absolute;
+ right: 0px;
+ bottom: 3px;
+ cursor: pointer;
+}
+
+/* Material Design */
+.gj-picker-md.datetimepicker [role="header"] {
+ font-size: 36px;
+ padding: 10px 20px;
+ display: block;
+}
+
+.gj-picker-md [role="switch"] {
+ color: rgba(255, 255, 255, 0.54);
+ background: #4A3600;
+ font-size: 32px;
+}
+
+/* Bootstrap */
+.gj-picker-bootstrap.datetimepicker [role="header"] {
+ font-size: 36px;
+ padding: 10px 20px;
+ display: block;
+}
+
+.gj-picker-bootstrap.datetimepicker [role="header"] [role="time"] {
+ font-size: 22px;
+}
+
+.gj-slider {
+ position: relative;
+ padding: 8px 6px;
+}
+
+.gj-slider [role="track"] {
+ width: 100%;
+}
+
+.gj-slider [role="progress"] {
+ position: absolute;
+ z-index: 1203;
+}
+
+.gj-slider [role="handle"] {
+ position: absolute;
+}
+
+.gj-slider-md [role="track"] {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ color: #fff;
+ text-align: center;
+ background-color: #e9ecef;
+ height: 2px;
+ background-color: rgba(0,0,0,.26);
+}
+
+.gj-slider-md [role="progress"] {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ color: #fff;
+ text-align: center;
+ height: 2px;
+ background-color: #536DFE; /* Indigo A200 */
+ top: 8px;
+ left: 6px;
+}
+
+.gj-slider-md [role="handle"] {
+ top: 3px;
+ left: 0px;
+ width: 12px;
+ height: 12px;
+ background-color: #536DFE; /* Indigo A200 */
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
+ filter: none;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+ border: 0px solid transparent;
+ border-radius: 50%;
+ cursor: pointer;
+ z-index: 1204;
+}
+
+/* Bootstrap */
+.gj-slider-bootstrap [role="track"] {
+ border-radius: 4px;
+ height: 10px;
+}
+
+.gj-slider-bootstrap [role="progress"] {
+ height: 10px;
+ border-radius: 4px;
+ top: 8px;
+ left: 6px;
+ transition: none;
+}
+
+.gj-slider-bootstrap [role="handle"] {
+ top: 2px;
+ left: 0px;
+ width: 20px;
+ height: 20px;
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
+ filter: none;
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+ box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+ border: 0px solid transparent;
+ border-radius: 50%;
+ cursor: pointer;
+ z-index: 1204;
+}
+
+.gj-slider-bootstrap-3 [role="handle"] {
+ background-color: #337ab7;
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
+ background-repeat: repeat-x;
+}
+
+.gj-slider-bootstrap-4 [role="handle"] {
+ background-color: #007bff;
+ background-image: -webkit-linear-gradient(top, #007bff 0%, #2e6da4 100%);
+ background-image: -o-linear-gradient(top, #007bff 0%, #2e6da4 100%);
+ background-image: linear-gradient(to bottom, #007bff 0%, #2e6da4 100%);
+ background-repeat: repeat-x;
+}
+
+
+.gj-colorpicker [role="right-icon"] {
+ cursor: pointer;
+}
+
+
+/* Material Design */
+.gj-colorpicker-md {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0,0,0,.87);
+ position: relative;
+}
+
+.gj-colorpicker-md [role="right-icon"] {
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ font-size: 24px;
+}
+
+/* ...........
+ */
+ .gj-datepicker-md [role="right-icon"] {
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ font-size: 16px;
+ color: #919191;
+ margin-right: 15px;
+} \ No newline at end of file
diff --git a/src/main/resources/static/css/magnific-popup.css b/src/main/resources/static/css/magnific-popup.css
new file mode 100644
index 0000000..8561e18
--- /dev/null
+++ b/src/main/resources/static/css/magnific-popup.css
@@ -0,0 +1,351 @@
+/* Magnific Popup CSS */
+.mfp-bg {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1042;
+ overflow: hidden;
+ position: fixed;
+ background: #0b0b0b;
+ opacity: 0.8; }
+
+.mfp-wrap {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1043;
+ position: fixed;
+ outline: none !important;
+ -webkit-backface-visibility: hidden; }
+
+.mfp-container {
+ text-align: center;
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ left: 0;
+ top: 0;
+ padding: 0 8px;
+ box-sizing: border-box; }
+
+.mfp-container:before {
+ content: '';
+ display: inline-block;
+ height: 100%;
+ vertical-align: middle; }
+
+.mfp-align-top .mfp-container:before {
+ display: none; }
+
+.mfp-content {
+ position: relative;
+ display: inline-block;
+ vertical-align: middle;
+ margin: 0 auto;
+ text-align: left;
+ z-index: 1045; }
+
+.mfp-inline-holder .mfp-content,
+.mfp-ajax-holder .mfp-content {
+ width: 100%;
+ cursor: auto; }
+
+.mfp-ajax-cur {
+ cursor: progress; }
+
+.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
+ cursor: -moz-zoom-out;
+ cursor: -webkit-zoom-out;
+ cursor: zoom-out; }
+
+.mfp-zoom {
+ cursor: pointer;
+ cursor: -webkit-zoom-in;
+ cursor: -moz-zoom-in;
+ cursor: zoom-in; }
+
+.mfp-auto-cursor .mfp-content {
+ cursor: auto; }
+
+.mfp-close,
+.mfp-arrow,
+.mfp-preloader,
+.mfp-counter {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ user-select: none; }
+
+.mfp-loading.mfp-figure {
+ display: none; }
+
+.mfp-hide {
+ display: none !important; }
+
+.mfp-preloader {
+ color: #CCC;
+ position: absolute;
+ top: 50%;
+ width: auto;
+ text-align: center;
+ margin-top: -0.8em;
+ left: 8px;
+ right: 8px;
+ z-index: 1044; }
+ .mfp-preloader a {
+ color: #CCC; }
+ .mfp-preloader a:hover {
+ color: #FFF; }
+
+.mfp-s-ready .mfp-preloader {
+ display: none; }
+
+.mfp-s-error .mfp-content {
+ display: none; }
+
+button.mfp-close,
+button.mfp-arrow {
+ overflow: visible;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
+ display: block;
+ outline: none;
+ padding: 0;
+ z-index: 1046;
+ box-shadow: none;
+ touch-action: manipulation; }
+
+button::-moz-focus-inner {
+ padding: 0;
+ border: 0; }
+
+.mfp-close {
+ width: 44px;
+ height: 44px;
+ line-height: 44px;
+ position: absolute;
+ right: 0;
+ top: 0;
+ text-decoration: none;
+ text-align: center;
+ opacity: 0.65;
+ padding: 0 0 18px 10px;
+ color: #FFF;
+ font-style: normal;
+ font-size: 28px;
+ font-family: Arial, Baskerville, monospace; }
+ .mfp-close:hover,
+ .mfp-close:focus {
+ opacity: 1; }
+ .mfp-close:active {
+ top: 1px; }
+
+.mfp-close-btn-in .mfp-close {
+ color: #333; }
+
+.mfp-image-holder .mfp-close,
+.mfp-iframe-holder .mfp-close {
+ color: #FFF;
+ right: -6px;
+ text-align: right;
+ padding-right: 6px;
+ width: 100%; }
+
+.mfp-counter {
+ position: absolute;
+ top: 0;
+ right: 0;
+ color: #CCC;
+ font-size: 12px;
+ line-height: 18px;
+ white-space: nowrap; }
+
+.mfp-arrow {
+ position: absolute;
+ opacity: 0.65;
+ margin: 0;
+ top: 50%;
+ margin-top: -55px;
+ padding: 0;
+ width: 90px;
+ height: 110px;
+ -webkit-tap-highlight-color: transparent; }
+ .mfp-arrow:active {
+ margin-top: -54px; }
+ .mfp-arrow:hover,
+ .mfp-arrow:focus {
+ opacity: 1; }
+ .mfp-arrow:before,
+ .mfp-arrow:after {
+ content: '';
+ display: block;
+ width: 0;
+ height: 0;
+ position: absolute;
+ left: 0;
+ top: 0;
+ margin-top: 35px;
+ margin-left: 35px;
+ border: medium inset transparent; }
+ .mfp-arrow:after {
+ border-top-width: 13px;
+ border-bottom-width: 13px;
+ top: 8px; }
+ .mfp-arrow:before {
+ border-top-width: 21px;
+ border-bottom-width: 21px;
+ opacity: 0.7; }
+
+.mfp-arrow-left {
+ left: 0; }
+ .mfp-arrow-left:after {
+ border-right: 17px solid #FFF;
+ margin-left: 31px; }
+ .mfp-arrow-left:before {
+ margin-left: 25px;
+ border-right: 27px solid #3F3F3F; }
+
+.mfp-arrow-right {
+ right: 0; }
+ .mfp-arrow-right:after {
+ border-left: 17px solid #FFF;
+ margin-left: 39px; }
+ .mfp-arrow-right:before {
+ border-left: 27px solid #3F3F3F; }
+
+.mfp-iframe-holder {
+ padding-top: 40px;
+ padding-bottom: 40px; }
+ .mfp-iframe-holder .mfp-content {
+ line-height: 0;
+ width: 100%;
+ max-width: 900px; }
+ .mfp-iframe-holder .mfp-close {
+ top: -40px; }
+
+.mfp-iframe-scaler {
+ width: 100%;
+ height: 0;
+ overflow: hidden;
+ padding-top: 56.25%; }
+ .mfp-iframe-scaler iframe {
+ position: absolute;
+ display: block;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
+ background: #000; }
+
+/* Main image in popup */
+img.mfp-img {
+ width: auto;
+ max-width: 100%;
+ height: auto;
+ display: block;
+ line-height: 0;
+ box-sizing: border-box;
+ padding: 40px 0 40px;
+ margin: 0 auto; }
+
+/* The shadow behind the image */
+.mfp-figure {
+ line-height: 0; }
+ .mfp-figure:after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 40px;
+ bottom: 40px;
+ display: block;
+ right: 0;
+ width: auto;
+ height: auto;
+ z-index: -1;
+ box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
+ background: #444; }
+ .mfp-figure small {
+ color: #BDBDBD;
+ display: block;
+ font-size: 12px;
+ line-height: 14px; }
+ .mfp-figure figure {
+ margin: 0; }
+
+.mfp-bottom-bar {
+ margin-top: -36px;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ cursor: auto; }
+
+.mfp-title {
+ text-align: left;
+ line-height: 18px;
+ color: #F3F3F3;
+ word-wrap: break-word;
+ padding-right: 36px; }
+
+.mfp-image-holder .mfp-content {
+ max-width: 100%; }
+
+.mfp-gallery .mfp-image-holder .mfp-figure {
+ cursor: pointer; }
+
+@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
+ /**
+ * Remove all paddings around the image on small screen
+ */
+ .mfp-img-mobile .mfp-image-holder {
+ padding-left: 0;
+ padding-right: 0; }
+ .mfp-img-mobile img.mfp-img {
+ padding: 0; }
+ .mfp-img-mobile .mfp-figure:after {
+ top: 0;
+ bottom: 0; }
+ .mfp-img-mobile .mfp-figure small {
+ display: inline;
+ margin-left: 5px; }
+ .mfp-img-mobile .mfp-bottom-bar {
+ background: rgba(0, 0, 0, 0.6);
+ bottom: 0;
+ margin: 0;
+ top: auto;
+ padding: 3px 5px;
+ position: fixed;
+ box-sizing: border-box; }
+ .mfp-img-mobile .mfp-bottom-bar:empty {
+ padding: 0; }
+ .mfp-img-mobile .mfp-counter {
+ right: 5px;
+ top: 3px; }
+ .mfp-img-mobile .mfp-close {
+ top: 0;
+ right: 0;
+ width: 35px;
+ height: 35px;
+ line-height: 35px;
+ background: rgba(0, 0, 0, 0.6);
+ position: fixed;
+ text-align: center;
+ padding: 0; } }
+
+@media all and (max-width: 900px) {
+ .mfp-arrow {
+ -webkit-transform: scale(0.75);
+ transform: scale(0.75); }
+ .mfp-arrow-left {
+ -webkit-transform-origin: 0;
+ transform-origin: 0; }
+ .mfp-arrow-right {
+ -webkit-transform-origin: 100%;
+ transform-origin: 100%; }
+ .mfp-container {
+ padding-left: 6px;
+ padding-right: 6px; } }
diff --git a/src/main/resources/static/css/nice-select.css b/src/main/resources/static/css/nice-select.css
new file mode 100644
index 0000000..9fb7798
--- /dev/null
+++ b/src/main/resources/static/css/nice-select.css
@@ -0,0 +1,140 @@
+.nice-select {
+ -webkit-tap-highlight-color: transparent;
+ background-color: #fff;
+ border-radius: 5px;
+ border: solid 1px #e8e8e8;
+ box-sizing: border-box;
+ clear: both;
+ cursor: pointer;
+ display: block;
+ float: left;
+ font-family: inherit;
+ font-size: 14px;
+ font-weight: normal;
+ height: 42px;
+ line-height: 40px;
+ outline: none;
+ padding-left: 18px;
+ padding-right: 30px;
+ position: relative;
+ text-align: left !important;
+ -webkit-transition: all 0.2s ease-in-out;
+ transition: all 0.2s ease-in-out;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ white-space: nowrap;
+ width: auto; }
+ .nice-select:hover {
+ border-color: #dbdbdb; }
+ .nice-select:active, .nice-select.open, .nice-select:focus {
+ border-color: #999; }
+
+
+ .nice-select.disabled {
+ border-color: #ededed;
+ color: #999;
+ pointer-events: none; }
+ .nice-select.disabled:after {
+ border-color: #cccccc; }
+ .nice-select.wide {
+ width: 100%; }
+ .nice-select.wide .list {
+ left: 0 !important;
+ right: 0 !important; }
+ .nice-select.right {
+ float: right; }
+ .nice-select.right .list {
+ left: auto;
+ right: 0; }
+ .nice-select.small {
+ font-size: 12px;
+ height: 36px;
+ line-height: 34px; }
+ .nice-select.small:after {
+ height: 4px;
+ width: 4px; }
+ .nice-select.small .option {
+ line-height: 34px;
+ min-height: 34px; }
+ .nice-select .list {
+ background-color: #fff;
+ border-radius: 5px;
+ box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
+ box-sizing: border-box;
+ margin-top: 4px;
+ opacity: 0;
+ overflow: hidden;
+ padding: 0;
+ pointer-events: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ -webkit-transform-origin: 50% 0;
+ -ms-transform-origin: 50% 0;
+ transform-origin: 50% 0;
+ -webkit-transform: scale(0.75) translateY(-21px);
+ -ms-transform: scale(0.75) translateY(-21px);
+ transform: scale(0.75) translateY(-21px);
+ -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
+ transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
+ z-index: 9; }
+ .nice-select .list:hover .option:not(:hover) {
+ background-color: transparent !important; }
+ .nice-select .option {
+ cursor: pointer;
+ font-weight: 400;
+ line-height: 40px;
+ list-style: none;
+ min-height: 40px;
+ outline: none;
+ padding-left: 18px;
+ padding-right: 29px;
+ text-align: left;
+ -webkit-transition: all 0.2s;
+ transition: all 0.2s; }
+ .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
+ background-color: #f6f6f6; }
+ .nice-select .option.selected {
+ font-weight: bold; }
+ .nice-select .option.disabled {
+ background-color: transparent;
+ color: #999;
+ cursor: default; }
+
+.no-csspointerevents .nice-select .list {
+ display: none; }
+
+.no-csspointerevents .nice-select.open .list {
+ display: block; }
+
+
+
+
+
+ /* ,,,,,,,,,,,,,,,, */
+
+
+ .nice-select:after {
+ content: "\e64b";
+ display: block;
+ height: 5px;
+ margin-top: -5px;
+ pointer-events: none;
+ position: absolute;
+ right: 30px;
+ top: 8px;
+ transition: all 0.15s ease-in-out;
+ width: 5px;
+ font-family: 'themify';
+ color: #ddd; }
+
+ .nice-select.open:after {
+ }
+ .nice-select.open .list {
+ opacity: 1;
+ pointer-events: auto;
+ -webkit-transform: scale(1) translateY(0);
+ -ms-transform: scale(1) translateY(0);
+ transform: scale(1) translateY(0); } \ No newline at end of file
diff --git a/src/main/resources/static/css/owl.carousel.min.css b/src/main/resources/static/css/owl.carousel.min.css
new file mode 100644
index 0000000..1ece042
--- /dev/null
+++ b/src/main/resources/static/css/owl.carousel.min.css
@@ -0,0 +1,6 @@
+/**
+ * Owl Carousel v2.2.1
+ * Copyright 2013-2017 David Deutsch
+ * Licensed under ()
+ */
+.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} \ No newline at end of file
diff --git a/src/main/resources/static/css/reset.css b/src/main/resources/static/css/reset.css
new file mode 100644
index 0000000..1e914dc
--- /dev/null
+++ b/src/main/resources/static/css/reset.css
@@ -0,0 +1,312 @@
+@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900|Roboto:100,100i,300,400,400i,500,500i,700,900&display=swap");
+/* 1. Theme default css */
+/* line 4, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+body {
+ font-family: "Roboto", sans-serif;
+ font-weight: normal;
+ font-style: normal;
+}
+
+/* line 11, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.img {
+ max-width: 100%;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 15, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+a,
+.button {
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 19, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+a:focus,
+.button:focus, button:focus {
+ text-decoration: none;
+ outline: none;
+}
+
+/* line 24, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+a:focus {
+ color: #fff;
+ text-decoration: none;
+}
+
+/* line 28, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+a:focus,
+a:hover,
+.portfolio-cat a:hover,
+.footer -menu li a:hover {
+ text-decoration: none;
+ color: #1F1F1F;
+}
+
+/* line 35, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+a,
+button {
+ color: #1F1F1F;
+ outline: medium none;
+}
+
+/* line 40, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+h1, h2, h3, h4, h5 {
+ font-family: "Playfair Display", serif;
+ color: #1F1F1F;
+}
+
+/* line 44, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+h1 a,
+h2 a,
+h3 a,
+h4 a,
+h5 a,
+h6 a {
+ color: inherit;
+}
+
+/* line 53, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+ul {
+ margin: 0px;
+ padding: 0px;
+}
+
+/* line 57, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+li {
+ list-style: none;
+}
+
+/* line 60, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+p {
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 28px;
+ color: #727272;
+ margin-bottom: 13px;
+ font-family: "Roboto", sans-serif;
+}
+
+/* line 69, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+label {
+ color: #7e7e7e;
+ cursor: pointer;
+ font-size: 14px;
+ font-weight: 400;
+}
+
+/* line 75, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+*::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 80, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 85, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+::selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 90, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+*::-webkit-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 95, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+*:-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 100, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+*::-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 105, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+*::placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 111, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+h3 {
+ font-size: 24px;
+}
+
+/* line 115, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.mb-65 {
+ margin-bottom: 67px;
+}
+
+/* line 119, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.black-bg {
+ background: #020c26 !important;
+}
+
+/* line 123, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.white-bg {
+ background: #ffffff;
+}
+
+/* line 126, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.gray-bg {
+ background: #f5f5f5;
+}
+
+/* line 131, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.bg-img-1 {
+ background-image: url(../img/slider/slider-img-1.jpg);
+}
+
+/* line 134, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.bg-img-2 {
+ background-image: url(../img/background-img/bg-img-2.jpg);
+}
+
+/* line 137, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.cta-bg-1 {
+ background-image: url(../img/background-img/bg-img-3.jpg);
+}
+
+/* line 142, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.overlay {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 146, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.overlay::before {
+ position: absolute;
+ content: "";
+ background-color: #1f1f1f;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+ opacity: .5;
+}
+
+/* line 158, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.overlay2 {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 162, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.overlay2::before {
+ position: absolute;
+ content: "";
+ background-color: #2E2200;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+ opacity: 0.5;
+}
+
+/* line 174, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.section-padding {
+ padding-top: 120px;
+ padding-bottom: 120px;
+}
+
+/* line 178, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.pt-120 {
+ padding-top: 120px;
+}
+
+/* button style */
+/* line 184, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel .owl-nav div {
+ background: transparent;
+ height: 54px;
+ left: 0px;
+ line-height: 54px;
+ position: absolute;
+ text-align: center;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ -webkit-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ width: 54px;
+ font-size: 25px;
+ color: #fff;
+ background-color: white;
+ border-radius: 50%;
+ left: 50px;
+ font-size: 18px;
+ line-height: 54px;
+ left: -26px;
+ font-size: 18px;
+ line-height: 54px;
+ color: #000;
+}
+
+/* line 215, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel .owl-nav div.owl-next {
+ left: auto;
+ right: -30px;
+}
+
+/* line 220, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel .owl-nav div.owl-next i {
+ position: relative;
+ right: 0;
+ top: 1px;
+}
+
+/* line 227, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel .owl-nav div.owl-prev i {
+ position: relative;
+ right: 1px;
+ top: 0px;
+}
+
+/* line 237, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel:hover .owl-nav div {
+ opacity: 1;
+ visibility: visible;
+}
+
+/* line 240, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.owl-carousel:hover .owl-nav div:hover {
+ color: #fff;
+ background: #4A3600;
+}
+
+/* line 249, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.mb-20px {
+ margin-bottom: 20px;
+}
+
+/* line 252, ../../Arafath/CL/CL september/205. Barber/HTML/scss/reset.scss */
+.mb-90 {
+ margin-bottom: 90px;
+}
+
+/*# sourceMappingURL=reset.css.map */ \ No newline at end of file
diff --git a/src/main/resources/static/css/reset.map b/src/main/resources/static/css/reset.map
new file mode 100644
index 0000000..9f68d60
--- /dev/null
+++ b/src/main/resources/static/css/reset.map
@@ -0,0 +1,16 @@
+{
+ "version": 3,
+ "file": "reset.css",
+ "sources": [
+ "../scss/reset.scss",
+ "../scss/_mixins.scss",
+ "../scss/_varriable.scss"
+ ],
+ "sourcesContent": [
+ "@import 'mixins.scss';\r\n@import 'varriable';\r\n/* 1. Theme default css */\r\nbody {\r\n\tfont-family: $font2;\r\n\tfont-weight: normal;\r\n font-style: normal;\r\n \r\n}\r\n\r\n.img {\r\n\tmax-width: 100%;\r\n\t@include transition(.3s);\r\n}\r\na,\r\n.button {\r\n@include transition(.3s);\r\n}\r\na:focus,\r\n.button:focus,button:focus {\r\n\ttext-decoration: none;\r\n\toutline: none;\r\n}\r\na:focus{\r\n\tcolor: #fff;\r\n\ttext-decoration: none;\r\n}\r\na:focus,\r\na:hover,\r\n.portfolio-cat a:hover,\r\n.footer -menu li a:hover {\r\n\ttext-decoration: none;\r\n\tcolor: #1F1F1F;\r\n}\r\na,\r\nbutton {\r\n\tcolor: #1F1F1F;\r\n\toutline: medium none;\r\n}\r\nh1,h2,h3,h4,h5{\r\n\tfont-family: $font1;\r\n\tcolor: #1F1F1F;\r\n}\r\nh1 a,\r\nh2 a,\r\nh3 a,\r\nh4 a,\r\nh5 a,\r\nh6 a {\r\n\tcolor: inherit;\r\n}\r\n\r\nul {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\nli {\r\n\tlist-style: none\r\n}\r\np {\r\n\tfont-size: 16px;\r\n\tfont-weight:300;\r\n\tline-height: 28px;\r\n\tcolor: #727272;\r\n\tmargin-bottom: 13px;\r\n\tfont-family: $font2;\r\n}\r\n\r\nlabel {\r\n\tcolor: #7e7e7e;\r\n\tcursor: pointer;\r\n\tfont-size: 14px;\r\n\tfont-weight: 400;\r\n}\r\n*::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n*::-webkit-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*:-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n\r\nh3{\r\n\tfont-size: 24px;\r\n}\r\n\r\n.mb-65{\r\n\tmargin-bottom: 67px;\r\n}\r\n// default-bg-color\r\n.black-bg{\r\n\tbackground: #020c26 !important;\r\n}\r\n\r\n.white-bg{\r\n\tbackground: #ffffff;\r\n}\r\n.gray-bg{\r\n\tbackground: #f5f5f5;\r\n}\r\n\r\n// background-image\r\n.bg-img-1{\r\n background-image: url(../img/slider/slider-img-1.jpg);\r\n}\r\n.bg-img-2{\r\n background-image: url(../img/background-img/bg-img-2.jpg);\r\n}\r\n.cta-bg-1{\r\n background-image: url(../img/background-img/bg-img-3.jpg);\r\n\r\n}\r\n\r\n.overlay{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #1f1f1f;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: .5;\r\n}\r\n\r\n.overlay2{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay2::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #2E2200;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: 0.5;\r\n}\r\n\r\n.section-padding{\r\n\tpadding-top: 120px;\r\n\tpadding-bottom: 120px;\r\n}\r\n.pt-120{\r\n\tpadding-top: 120px;\r\n}\r\n\r\n/* button style */\r\n.owl-carousel {\r\n\t.owl-nav div {\r\n\t\tbackground: transparent;\r\n\t\theight: 54px;\r\n\t\tleft: 0px;\r\n\t\tline-height: 54px;\r\n\t\t// opacity: 0;\r\n\t\tposition: absolute;\r\n\t\ttext-align: center;\r\n\t\ttop: 50%;\r\n\t\t-webkit-transform: translateY(-50%);\r\n\t\t\t-ms-transform: translateY(-50%);\r\n\t\t\t\ttransform: translateY(-50%);\r\n\t\t-webkit-transition: all 0.3s ease 0s;\r\n\t\t-o-transition: all 0.3s ease 0s;\r\n\t\ttransition: all 0.3s ease 0s;\r\n\t\t// visibility: hidden;\r\n\t\twidth: 54px;\r\n\t\tfont-size: 25px;\r\n\t\tcolor: #fff;\r\n\t\tbackground-color: rgba(255, 255, 255,255);\r\n\t\tborder-radius: 50%;\r\n\t\tleft: 50px;\r\n\t\tfont-size: 18px;\r\n\t\tline-height: 54px;\r\n\t\tleft: -26px;\r\n\t\tfont-size: 18px;\r\n\t\tline-height: 54px;\r\n\t\tcolor: #000;\r\n\t}\r\n\t.owl-nav{\r\n\t\tdiv{\r\n\t\t\t&.owl-next{\r\n\t\t\t\t// left: 86px;\r\n\t\t\t\t// right: auto;\r\n\t\t\t\tleft: auto;\r\n\t\t\t\tright: -30px;\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 0;\r\n\t\t\t\t\ttop: 1px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t&.owl-prev{\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 1px;\r\n\t\t\t\t\ttop: 0px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t&:hover{\r\n\t\t.owl-nav{\r\n\t\t\tdiv{\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tvisibility: visible;\r\n\t\t\t\t&:hover{\r\n\t\t\t\t\tcolor: #fff;\r\n\t\t\t\t\tbackground: $theme-color4;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n.mb-20px{\r\n\tmargin-bottom: 20px;\r\n}\r\n.mb-90{\r\n\tmargin-bottom: 90px;\r\n}\r\n\r\n ",
+ "// opacity\r\n@mixin opacity($opacity) {\r\n opacity: $opacity;\r\n $opacity-ie: $opacity * 100;\r\n filter: alpha(opacity=$opacity-ie); //IE8\r\n }\r\n// transition\r\n@mixin transition($args...) {\r\n -webkit-transition: $args;\r\n -moz-transition: $args;\r\n -ms-transition: $args;\r\n -o-transition: $args;\r\n transition: $args;\r\n}// transition\r\n@mixin border-radius($man) {\r\n -webkit-border-radius: $man;\r\n -moz-border-radius: $man;\r\n border-radius: $man;\r\n}\r\n\r\n\r\n// Flexbox display\r\n@mixin flexbox() {\r\n display: -webkit-box;\r\n display: -moz-box;\r\n display: -ms-flexbox;\r\n display: -webkit-flex;\r\n display: flex;\r\n}\r\n\r\n// justify-content\r\n@mixin justify-content($justify) {\r\n -webkit-justify-content: $justify;\r\n -moz-justify-content: $justify;\r\n -ms-justify-content: $justify;\r\n justify-content: $justify;\r\n -ms-flex-pack: $justify;\r\n}\r\n\r\n// align-content\r\n@mixin align-content($align) {\r\n -webkit-align-content: $align;\r\n -moz-align-content: $align;\r\n -ms-align-content: $align;\r\n align-content: $align;\r\n}\r\n\r\n// Cross-axis Alignment\r\n@mixin align-items($align) {\r\n -webkit-align-items: $align;\r\n -moz-align-items: $align;\r\n -ms-align-items: $align;\r\n align-items: $align;\r\n}\r\n\r\n\r\n// transform\r\n// Browser Prefixes\r\n@mixin transform($transforms) {\r\n\t-webkit-transform: $transforms;\r\n\t-moz-transform: $transforms;\r\n\t-ms-transform: $transforms;\r\n\ttransform: $transforms;\r\n}\r\n// Translate\r\n@mixin translate ($x, $y) {\r\n\t@include transform(translate($x, $y));\r\n}\r\n// TranslateY\r\n@mixin translateY ($y) {\r\n @include transform(translateY($y));\r\n }\r\n// TranslateY\r\n@mixin translateX ($x) {\r\n @include transform(translateX($x));\r\n }\r\n\r\n\r\n// Box shadows\r\n@mixin box-shadow($shadow...) {\r\n -webkit-box-shadow: $shadow;\r\n -moz-box-shadow: $shadow; \r\n box-shadow: $shadow;\r\n}\r\n\r\n\r\n\r\n@mixin background($imgpath,$position: center,$size: cover,$repeat: no-repeat) {\r\n background: {\r\n image: url($imgpath);\r\n position: $position;\r\n repeat: $repeat;\r\n size: $size;\r\n }\r\n}\r\n@mixin transform_time($total_time) {\r\n -webkit-transition: $total_time;\r\n transition: $total_time;\r\n}\r\n@mixin placeholder {\r\n&.placeholder {\r\n @content;\r\n}\r\n&:-moz-placeholder {\r\n @content;\r\n}\r\n&::-moz-placeholder {\r\n @content;\r\n}\r\n&::-webkit-input-placeholder {\r\n @content;\r\n}\r\n}\r\n@mixin transition($args: all 0.6s ease 0s) {\r\n-webkit-transition: $args;\r\n-moz-transition: $args;\r\n-o-transition: $args;\r\ntransition: $args;\r\n}\r\n\r\n@mixin keyframes ($animation-name) {\r\n@-webkit-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-moz-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-o-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@keyframes #{$animation-name} {\r\n @content;\r\n}\r\n}",
+ "@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900|Roboto:100,100i,300,400,400i,500,500i,700,900&display=swap');\r\n\r\n// fonts\r\n$font1: 'Playfair Display', serif;\r\n$font2: 'Roboto', sans-serif;\r\n// fonts-size\r\n\r\n$heading-color:#020c26;\r\n$gray-color: #bebebe;\r\n$gray-color-2: #bdbdbd;\r\n\r\n$theme-color: #020c26;\r\n$theme-color2: #ff5e13;\r\n$theme-color3: #BC9321;\r\n$theme-color4: #4A3600;\r\n\r\n$gray-color3:#5c5c5c;\r\n$white_color:#fff;\r\n\r\n\r\n\r\n$font_1: #666666;\r\n$font_2: #646464;\r\n$font_3: #7f7f7f;\r\n$font_4: #8a8a8a;\r\n$font_5: #999999;\r\n$font_6: #666666;\r\n$font_7: #5c5c5c;\r\n$border_color: #fdcb9e;\r\n$footer_bg: #303030;\r\n$sidebar_bg: #fbf9ff;\r\n\r\n$medium_device : 'only screen and (min-width: 992px) and (max-width: 1200px)';\r\n$tab_device:'only screen and (min-width: 768px) and (max-width: 991px)';\r\n$large_mobile: 'only screen and (min-width: 576px) and (max-width: 767px)';\r\n$tab:'(max-width: 991px)';\r\n$small_mobile:'(max-width: 576px)';\r\n$xs_mobile:'(max-width: 420px)';\r\n$sm_mobile:'only screen and (min-width: 421px) and (max-width: 575px)';\r\n$big_screen:'only screen and (min-width: 1200px) and (max-width: 1440px)';\r\n$extra_big_screen: 'only screen and (min-width: 1200px) and (max-width: 3640px)';\r\n\r\n// ,,,,,,,,,,,\r\n$btn_bg: #BC9321;\r\n$btn_hover: #f5790b;\r\n$section_bg: #f7f7f7;\r\n$section_bg_1: #454545;\r\n$heading_color: #191d34;\r\n$heading_color2: #ff8b23;"
+ ],
+ "names": [],
+ "mappings": "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"
+} \ No newline at end of file
diff --git a/src/main/resources/static/css/slicknav.css b/src/main/resources/static/css/slicknav.css
new file mode 100644
index 0000000..1c081e6
--- /dev/null
+++ b/src/main/resources/static/css/slicknav.css
@@ -0,0 +1,251 @@
+/*!
+ * SlickNav Responsive Mobile Menu v1.0.10
+ * (c) 2016 Josh Cope
+ * licensed under MIT
+ */
+.slicknav_btn {
+ position: relative;
+ display: block;
+ vertical-align: middle;
+ float: right;
+ padding: 0.438em 0.625em 0.438em 0.625em;
+ line-height: 1.125em;
+ cursor: pointer; }
+ .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
+ margin-top: 0.188em; }
+
+.slicknav_menu {
+ *zoom: 1; }
+ .slicknav_menu .slicknav_menutxt {
+ display: block;
+ line-height: 1.188em;
+ float: left; }
+ .slicknav_menu .slicknav_icon {
+ float: left;
+ width: 1.125em;
+ height: 0.875em;
+ margin: 0.188em 0 0 0.438em; }
+ .slicknav_menu .slicknav_icon:before {
+ background: transparent;
+ width: 1.125em;
+ height: 0.875em;
+ display: block;
+ content: "";
+ position: absolute; }
+ .slicknav_menu .slicknav_no-text {
+ margin: 0; }
+ .slicknav_menu .slicknav_icon-bar {
+ display: block;
+ width: 1.125em;
+ height: 0.125em;}
+ .slicknav_menu:before {
+ content: " ";
+ display: table; }
+ .slicknav_menu:after {
+ content: " ";
+ display: table;
+ clear: both; }
+
+.slicknav_nav {
+ clear: both; }
+ .slicknav_nav ul {
+ display: block; }
+ .slicknav_nav li {
+ display: block; }
+ .slicknav_nav .slicknav_arrow {
+ font-size: 0.8em;
+ margin: 0 0 0 0.4em; }
+ .slicknav_nav .slicknav_item {
+ cursor: pointer; }
+ .slicknav_nav .slicknav_item a {
+ display: inline; }
+ .slicknav_nav .slicknav_row {
+ display: block; }
+ .slicknav_nav a {
+ display: block; }
+ .slicknav_nav .slicknav_parent-link a {
+ display: inline; }
+
+.slicknav_brand {
+ float: left; }
+
+.slicknav_menu {
+ font-size: 16px;
+ box-sizing: border-box;
+ background: #4c4c4c;
+ padding: 5px; }
+ .slicknav_menu * {
+ box-sizing: border-box; }
+ .slicknav_menu .slicknav_menutxt {
+ color: #fff;
+ font-weight: bold; }
+ .slicknav_menu .slicknav_icon-bar {
+ background-color: #fff; }
+
+ .slicknav_btn {
+ margin: 5px 5px 6px;
+ text-decoration: none;
+ background-color: none;
+ }
+
+.slicknav_nav {
+ color: #fff;
+ margin: 0;
+ padding: 0;
+ font-size: 0.875em;
+ list-style: none;
+ overflow: hidden; }
+ .slicknav_nav ul {
+ list-style: none;
+ overflow: hidden;
+ padding: 0;
+ margin: 0 0 0 20px; }
+ .slicknav_nav .slicknav_row {
+ padding: 5px 10px;
+ margin: 2px 5px; }
+ .slicknav_nav .slicknav_row:hover {
+ -webkit-border-radius: 6px;
+ -moz-border-radius: 6px;
+ border-radius: 6px;
+ background: #ccc;
+ color: #fff; }
+ .slicknav_nav a {
+ padding: 5px 10px;
+ margin: 2px 5px;
+ text-decoration: none;
+ color: #fff; }
+ .slicknav_nav a:hover {
+ -webkit-border-radius: 0px;
+ -moz-border-radius: 0px;
+ border-radius: 0px;
+ background: #ccc;
+ color: #222; }
+ .slicknav_nav .slicknav_txtnode {
+ margin-left: 15px; }
+ .slicknav_nav .slicknav_item a {
+ padding: 0;
+ margin: 0; }
+ .slicknav_nav .slicknav_parent-link a {
+ padding: 0;
+ margin: 0; }
+
+.slicknav_brand {
+ color: #fff;
+ font-size: 18px;
+ line-height: 30px;
+ padding: 7px 12px;
+ height: 44px; }
+
+
+
+ /*===== mobile menu slicknav =====*/
+
+.mobile_menu {
+ position: absolute;
+ right: 10px;
+ width: 96%;
+ z-index: 99;
+}
+.slicknav_menu .slicknav_menutxt {
+ display: none;
+}
+.slicknav_menu {
+ background: transparent;
+ margin-top: 10px;
+}
+.slicknav_menu .slicknav_icon-bar {
+ background-color: #ffffff;
+ height: 3px;
+ margin: 5px 0;
+ -webkit-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ width: 30px;
+ position: relative;
+}
+.slicknav_btn {
+ background-color: transparent;
+ cursor: pointer;
+ margin-bottom: 10px;
+ margin-top: -35px;
+ position: relative;
+ z-index: 99;
+}
+/* .slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(2) {
+ opacity: 0;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
+}
+.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(1) {
+ -webkit-transform: rotate(45deg) translate(1px, 7px);
+ -ms-transform: rotate(45deg) translate(1px, 7px);
+ transform: rotate(45deg) translate(1px, 7px);
+}
+.slicknav_menu .slicknav_open .slicknav_icon-bar:nth-child(3) {
+ -webkit-transform: rotate(-45deg) translateY(-6px);
+ -ms-transform: rotate(-45deg) translateY(-6px);
+ transform: rotate(-45deg) translateY(-6px);
+ position: relative;
+ top: -1px;
+} */
+.slicknav_menu {
+ margin: 0;
+ padding: 0;
+}
+.slicknav_icon-bar {
+ background: #fff !important;
+}
+.slicknav_nav {
+ background: #fff;
+ float: right;
+ margin-top:0;
+ padding: 0;
+ width: 100%;
+ border-bottom: 1px solid #eee;
+}
+
+.slicknav_nav a:hover {
+ background: #F79960 none repeat scroll 0 0;
+ border-radius: 0;
+ color: #ffffff;
+}
+
+.slicknav_nav a {
+ font-size: 14px;
+ font-weight: 400;
+ color: #000;
+ text-transform: capitalize;
+}
+
+.slicknav_nav .slicknav_arrow {
+ float: right;
+}
+
+.slicknav_nav .slicknav_row:hover,
+.slicknav_nav .slicknav_row:hover .slicknav_arrow {
+ border-radius: 0;
+ background-color: #F79960;
+ background-color: transparent;
+ color: #000;
+}
+
+.slicknav_btn {
+ background-color: transparent;
+ cursor: pointer;
+ margin-bottom: 10px;
+ position: relative;
+ z-index: 99;
+ border: none;
+ border-radius: 3px;
+ top: 5px;
+ padding: 5px;
+ right: 5px;
+ margin-top: -5px;
+}
+.slicknav_menu .slicknav_icon {
+ margin-right: 6px;
+ margin-top: 3px;
+ position: relative;
+ right: 5px;
+ top: -5px;
+ padding-bottom: 3px;
+} \ No newline at end of file
diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css
new file mode 100644
index 0000000..d02706c
--- /dev/null
+++ b/src/main/resources/static/css/style.css
@@ -0,0 +1,6147 @@
+@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Yeseva+One&display=swap");
+@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Yeseva+One&display=swap");
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_extend.scss */
+.flex-center-start {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: start;
+}
+
+/* line 13, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_extend.scss */
+.overlay::before {
+ background-image: -moz-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
+ background-image: -webkit-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
+ background-image: -ms-linear-gradient(170deg, rgba(34, 34, 34, 0) 0%, black 100%);
+}
+
+/* Normal desktop :1200px. */
+/* Normal desktop :992px. */
+/* Tablet desktop :768px. */
+/* small mobile :320px. */
+/* Large Mobile :480px. */
+/* 1. Theme default css */
+/* line 4, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+body {
+ font-family: "Lato", sans-serif;
+ font-weight: normal;
+ font-style: normal;
+}
+
+/* line 11, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.img {
+ max-width: 100%;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 15, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+a,
+.button {
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 19, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+a:focus,
+.button:focus, button:focus {
+ text-decoration: none;
+ outline: none;
+}
+
+/* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+a:focus {
+ text-decoration: none;
+}
+
+/* line 27, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+a:focus,
+a:hover,
+.portfolio-cat a:hover,
+.footer -menu li a:hover {
+ text-decoration: none;
+}
+
+/* line 33, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+a,
+button {
+ color: #1F1F1F;
+ outline: medium none;
+}
+
+/* line 38, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+h1, h2, h3, h4, h5 {
+ font-family: "Yeseva One", cursive;
+ color: #1F1F1F;
+}
+
+/* line 42, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+h1 a,
+h2 a,
+h3 a,
+h4 a,
+h5 a,
+h6 a {
+ color: inherit;
+}
+
+/* line 51, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+ul {
+ margin: 0px;
+ padding: 0px;
+}
+
+/* line 55, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+li {
+ list-style: none;
+}
+
+/* line 58, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+p {
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 28px;
+ color: #727272;
+ margin-bottom: 13px;
+ font-family: "Lato", sans-serif;
+}
+
+/* line 67, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+label {
+ color: #7e7e7e;
+ cursor: pointer;
+ font-size: 14px;
+ font-weight: 400;
+}
+
+/* line 73, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+*::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 78, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 83, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+::selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 88, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+*::-webkit-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 93, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+*:-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 98, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+*::-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 103, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+*::placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 109, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+h3 {
+ font-size: 24px;
+}
+
+/* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.mb-65 {
+ margin-bottom: 67px;
+}
+
+/* line 117, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.black-bg {
+ background: #020c26 !important;
+}
+
+/* line 121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.white-bg {
+ background: #ffffff;
+}
+
+/* line 124, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.gray-bg {
+ background: #f5f5f5;
+}
+
+/* line 129, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.bg-img-1 {
+ background-image: url(../img/slider/slider-img-1.jpg);
+}
+
+/* line 132, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.bg-img-2 {
+ background-image: url(../img/background-img/bg-img-2.jpg);
+}
+
+/* line 135, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.cta-bg-1 {
+ background-image: url(../img/background-img/bg-img-3.jpg);
+}
+
+/* line 140, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.overlay {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 144, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.overlay::before {
+ position: absolute;
+ content: "";
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+}
+
+/* line 155, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.overlay2 {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 159, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.overlay2::before {
+ position: absolute;
+ content: "";
+ background-color: #2E2200;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+ opacity: 0.5;
+}
+
+/* line 171, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.section-padding {
+ padding-top: 120px;
+ padding-bottom: 120px;
+}
+
+/* line 175, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.pt-120 {
+ padding-top: 120px;
+}
+
+/* button style */
+/* line 181, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel .owl-nav div {
+ background: transparent;
+ height: 54px;
+ left: 0px;
+ line-height: 54px;
+ position: absolute;
+ text-align: center;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ -webkit-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ width: 54px;
+ font-size: 25px;
+ color: #fff;
+ background-color: white;
+ border-radius: 50%;
+ left: 50px;
+ font-size: 18px;
+ line-height: 54px;
+ left: -26px;
+ font-size: 18px;
+ line-height: 54px;
+ color: #000;
+}
+
+/* line 212, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel .owl-nav div.owl-next {
+ left: auto;
+ right: -30px;
+}
+
+/* line 217, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel .owl-nav div.owl-next i {
+ position: relative;
+ right: 0;
+ top: 1px;
+}
+
+/* line 224, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel .owl-nav div.owl-prev i {
+ position: relative;
+ right: 1px;
+ top: 0px;
+}
+
+/* line 234, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel:hover .owl-nav div {
+ opacity: 1;
+ visibility: visible;
+}
+
+/* line 237, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.owl-carousel:hover .owl-nav div:hover {
+ color: #fff;
+ background: #EB592D;
+}
+
+/* line 246, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.mb-20px {
+ margin-bottom: 20px;
+}
+
+/* line 249, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+.mb-90 {
+ margin-bottom: 90px;
+}
+
+@media (max-width: 767px) {
+ /* line 249, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+ .mb-90 {
+ margin-bottom: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 249, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_reset.scss */
+ .mb-90 {
+ margin-bottom: 45px;
+ }
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn {
+ background: #fff;
+ color: #EB592D;
+ display: inline-block;
+ padding: 18px 44px;
+ font-family: "Lato", sans-serif;
+ font-size: 14px;
+ font-weight: 400;
+ border: 0;
+ border: 1px solid #EB592D;
+ letter-spacing: 3px;
+ text-align: center;
+ color: #EB592D !important;
+ text-transform: uppercase;
+ cursor: pointer;
+}
+
+/* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn:hover {
+ background: #EB592D;
+ color: #fff !important;
+ border: 1px solid #EB592D;
+}
+
+/* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn:focus {
+ outline: none;
+}
+
+/* line 25, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn.large-width {
+ width: 220px;
+}
+
+/* line 29, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn3 {
+ background: #eb592d;
+ font-size: 16px;
+ font-weight: 400;
+ border: 1px solid transparent;
+ color: #fff;
+ padding: 19px 43px 23px 43px;
+ font-family: "Lato", sans-serif;
+ display: inline-block;
+ line-height: 1;
+}
+
+/* line 39, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn3:hover {
+ background: transparent;
+ color: #eb592d;
+ border: 1px solid #eb592d;
+}
+
+/* line 44, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn3:focus {
+ outline: none;
+}
+
+/* line 48, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn2 {
+ background: transparent;
+ color: #fff;
+ display: inline-block;
+ padding: 18px 24px;
+ font-family: "Lato", sans-serif;
+ font-size: 14px;
+ font-weight: 400;
+ border: 0;
+ border: 1px solid #fff;
+ letter-spacing: 2px;
+ text-transform: uppercase;
+}
+
+/* line 60, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn2:hover {
+ background: #fff;
+ color: #131313 !important;
+}
+
+/* line 64, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.boxed-btn2:focus {
+ outline: none;
+}
+
+/* line 68, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.line-button {
+ color: #919191;
+ font-size: 16px;
+ font-weight: 400;
+ display: inline-block;
+ position: relative;
+ padding-right: 5px;
+ padding-bottom: 2px;
+}
+
+/* line 76, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.line-button::before {
+ position: absolute;
+ content: "";
+ background: #919191;
+ width: 100%;
+ height: 1px;
+ bottom: 0;
+ left: 0;
+}
+
+/* line 85, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.line-button:hover {
+ color: #009DFF;
+}
+
+/* line 88, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.line-button:hover::before {
+ background: #009DFF;
+}
+
+/* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.book_now {
+ display: inline-block;
+ font-size: 14px;
+ color: #009DFF;
+ border: 1px solid #009DFF;
+ text-transform: capitalize;
+ padding: 10px 25px;
+}
+
+/* line 99, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_btn.scss */
+.book_now:hover {
+ background: #009DFF;
+ color: #fff;
+}
+
+/* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title h3 {
+ font-size: 50px;
+ font-weight: 400;
+ line-height: 51px;
+ color: #222222;
+ font-family: "Yeseva One", cursive;
+ margin-bottom: 21px;
+}
+
+@media (max-width: 767px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title h3 {
+ font-size: 27px;
+ line-height: 33px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title h3 {
+ font-size: 32px;
+ line-height: 40px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title h3 {
+ font-size: 33px;
+ line-height: 40px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 21, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title h3 br {
+ display: none;
+ }
+}
+
+/* line 27, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title p {
+ font-size: 16px;
+ line-height: 32px;
+ color: #7f7f7f;
+ font-weight: 400;
+}
+
+/* line 34, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.mb-100 {
+ margin-bottom: 100px;
+}
+
+@media (max-width: 767px) {
+ /* line 34, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .mb-100 {
+ margin-bottom: 40px;
+ }
+}
+
+/* line 41, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title2 i {
+ font-size: 45px;
+ color: #BC9321;
+ display: block;
+}
+
+/* line 46, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title2 h3 {
+ font-size: 42px;
+ font-weight: 400;
+ line-height: 52px;
+ color: #EB592D;
+ position: relative;
+ padding-bottom: 30px;
+ margin-top: 10px;
+}
+
+/* line 54, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title2 h3::before {
+ position: absolute;
+ content: "";
+ width: 80px;
+ height: 1px;
+ background: #BC9321;
+ bottom: 0;
+ left: 50%;
+ margin-left: -40px;
+}
+
+@media (max-width: 767px) {
+ /* line 46, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title2 h3 {
+ font-size: 30px;
+ line-height: 36px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 46, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title2 h3 {
+ font-size: 36px;
+ line-height: 42px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 73, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title2 h3 br {
+ display: none;
+ }
+}
+
+/* line 80, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title3 h3 {
+ font-size: 60px;
+ color: #FFFFFF;
+ font-weight: 900;
+ text-transform: capitalize;
+}
+
+@media (max-width: 767px) {
+ /* line 80, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title3 h3 {
+ font-size: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 80, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title3 h3 {
+ font-size: 35px;
+ }
+}
+
+/* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.section_title3.padding_plus {
+ padding-top: 115px;
+ padding-bottom: 50px;
+}
+
+@media (max-width: 767px) {
+ /* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title3.padding_plus {
+ padding-top: 60px;
+ padding-bottom: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .section_title3.padding_plus {
+ padding-top: 80px;
+ padding-bottom: 40px;
+ }
+}
+
+/* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.mb-55 {
+ margin-bottom: 53px;
+}
+
+@media (max-width: 767px) {
+ /* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .mb-55 {
+ margin-bottom: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .mb-55 {
+ margin-bottom: 40px;
+ }
+}
+
+/* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.mb-40 {
+ margin-bottom: 40px;
+}
+
+@media (max-width: 767px) {
+ /* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .mb-40 {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 120, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+.pl-68 {
+ padding-left: 68px;
+}
+
+@media (max-width: 767px) {
+ /* line 120, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .pl-68 {
+ padding-left: 0;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 120, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .pl-68 {
+ padding-left: 0;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 120, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_section_title.scss */
+ .pl-68 {
+ padding-left: 0;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 4, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+ .mobile_menu {
+ position: absolute;
+ right: 0px;
+ width: 100%;
+ z-index: 9;
+ }
+}
+
+/* line 13, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_menu .slicknav_nav {
+ background: #fff;
+ float: right;
+ margin-top: 0;
+ padding: 0;
+ width: 95%;
+ padding: 0;
+ border-radius: 0px;
+ margin-top: 5px;
+ position: absolute;
+ left: 0;
+ right: 0;
+ margin: auto;
+ top: 11px;
+}
+
+/* line 28, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_menu .slicknav_nav a:hover {
+ background: transparent;
+ color: #4A3600;
+}
+
+/* line 32, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_menu .slicknav_nav a.active {
+ color: #4A3600;
+}
+
+@media (max-width: 767px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+ .slicknav_menu .slicknav_nav a i {
+ display: none;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+ .slicknav_menu .slicknav_nav a i {
+ display: none;
+ }
+}
+
+/* line 44, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_menu .slicknav_nav .slicknav_btn {
+ background-color: transparent;
+ cursor: pointer;
+ margin-bottom: 10px;
+ margin-top: -40px;
+ position: relative;
+ z-index: 99;
+ border: 1px solid #ddd;
+ top: 3px;
+ right: 5px;
+ top: -32px;
+}
+
+/* line 55, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_menu .slicknav_nav .slicknav_btn .slicknav_icon {
+ margin-right: 6px;
+ margin-top: 3px;
+ position: relative;
+ padding-bottom: 3px;
+ top: -11px;
+ right: -5px;
+}
+
+@media (max-width: 767px) {
+ /* line 12, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+ .slicknav_menu {
+ margin-right: 0px;
+ }
+}
+
+/* line 72, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_nav .slicknav_arrow {
+ float: right;
+ font-size: 22px;
+ position: relative;
+ top: -9px;
+}
+
+/* line 78, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_btn {
+ background-color: transparent;
+ cursor: pointer;
+ margin-bottom: 10px;
+ position: relative;
+ z-index: 99;
+ border: none;
+ border-radius: 3px;
+ top: 5px;
+ padding: 5px;
+ right: 5px;
+ margin-top: -5px;
+ top: -31px;
+}
+
+/* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slick-nav.scss */
+.slicknav_btn {
+ background-color: transparent;
+ cursor: pointer;
+ margin-bottom: 10px;
+ position: relative;
+ z-index: 99;
+ border: none;
+ border-radius: 3px;
+ top: 5px;
+ padding: 5px;
+ right: 0;
+ margin-top: -5px;
+ top: -26px;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area {
+ position: absolute;
+ left: 0;
+ right: 0;
+ width: 100%;
+ top: 0;
+ z-index: 9;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area {
+ padding-top: 0;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area {
+ padding-top: 0;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area {
+ padding: 10px 10px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area {
+ padding: 10px 10px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .logo-img {
+ text-align: left;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .logo-img {
+ text-align: left;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .logo-img {
+ text-align: left;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .logo-img img {
+ width: 70px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .logo-img img {
+ width: 70px;
+ }
+}
+
+/* line 47, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room {
+ display: -webkit-box;
+ display: -moz-box;
+ display: -ms-flexbox;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-align-items: center;
+ -moz-align-items: center;
+ -ms-align-items: center;
+ align-items: center;
+ -webkit-justify-content: flex-end;
+ -moz-justify-content: flex-end;
+ -ms-justify-content: flex-end;
+ justify-content: flex-end;
+ -ms-flex-pack: flex-end;
+}
+
+/* line 53, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room .socail_links ul li {
+ display: inline-block;
+}
+
+/* line 56, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room .socail_links ul li a {
+ color: #A8A7A0;
+ margin: 0 10px;
+ font-size: 15px;
+}
+
+/* line 60, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room .socail_links ul li a:hover {
+ color: #fff;
+}
+
+/* line 68, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room .book_btn a {
+ background: #eb592d;
+ font-size: 16px;
+ font-weight: 400;
+ border: 1px solid transparent;
+ color: #fff;
+ padding: 19px 43px 23px 43px;
+ font-family: "Lato", sans-serif;
+ display: inline-block;
+ line-height: 1;
+}
+
+/* line 78, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .book_room .book_btn a:hover {
+ background: transparent;
+ color: #eb592d;
+ border: 1px solid #eb592d;
+}
+
+/* line 86, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu {
+ text-align: center;
+}
+
+/* line 89, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li {
+ display: inline-block;
+ position: relative;
+ margin-right: 45px;
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 89, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li {
+ margin-right: 30px;
+ }
+}
+
+@media (min-width: 1200px) and (max-width: 1500px) {
+ /* line 89, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li {
+ margin-right: 45px;
+ }
+}
+
+/* line 99, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li a {
+ color: #fff;
+ font-size: 16px;
+ text-transform: capitalize;
+ font-weight: 400;
+ display: inline-block;
+ padding: 39px 0px 39px 0px;
+ font-family: "Lato", sans-serif;
+ position: relative;
+ text-transform: capitalize;
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 99, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li a {
+ font-size: 15px;
+ }
+}
+
+@media (min-width: 1200px) and (max-width: 1500px) {
+ /* line 99, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li a {
+ font-size: 15px;
+ }
+}
+
+/* line 118, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li a i {
+ font-size: 9px;
+}
+
+@media (max-width: 767px) {
+ /* line 118, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li a i {
+ display: none !important;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 118, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area .main-menu ul li a i {
+ display: none !important;
+ }
+}
+
+/* line 149, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li a:hover {
+ color: #fff;
+}
+
+/* line 153, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li .submenu {
+ position: absolute;
+ left: 0;
+ top: 140%;
+ background: #fff;
+ width: 200px;
+ z-index: 2;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
+ opacity: 0;
+ visibility: hidden;
+ text-align: left;
+ -webkit-transition: 0.6s;
+ -moz-transition: 0.6s;
+ -o-transition: 0.6s;
+ transition: 0.6s;
+}
+
+/* line 165, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li .submenu li {
+ display: block;
+}
+
+/* line 167, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li .submenu li a {
+ padding: 10px 15px;
+ position: inherit;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+ display: block;
+ color: #000;
+}
+
+/* line 173, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li .submenu li a::before {
+ display: none;
+}
+
+/* line 177, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li .submenu li:hover a {
+ color: #000;
+}
+
+/* line 182, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li:hover > .submenu {
+ opacity: 1;
+ visibility: visible;
+ top: 100%;
+}
+
+/* line 187, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li:hover > a::before {
+ opacity: 1;
+ transform: scaleX(1);
+}
+
+/* line 191, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area .main-menu ul li:first-child a {
+ padding-left: 0;
+}
+
+/* line 197, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area.sticky {
+ box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
+ position: fixed;
+ width: 100%;
+ top: -70px;
+ left: 0;
+ right: 0;
+ z-index: 999;
+ transform: translateY(70px);
+ transition: transform 500ms ease, background 500ms ease;
+ -webkit-transition: transform 500ms ease, background 500ms ease;
+ box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
+ background: #000;
+}
+
+@media (max-width: 767px) {
+ /* line 197, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area.sticky {
+ padding: 10px 10px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 197, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area.sticky {
+ padding: 10px 10px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 197, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area.sticky {
+ padding: 10px 20px;
+ }
+}
+
+@media (min-width: 1200px) and (max-width: 1500px) {
+ /* line 197, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+ .header-area .main-header-area.sticky {
+ padding: 10px 20px;
+ }
+}
+
+/* line 222, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_header.scss */
+.header-area .main-header-area.sticky .main-menu {
+ padding: 0;
+}
+
+/* line 11, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .single_slider {
+ height: 900px;
+ background-size: cover;
+ background-repeat: no-repeat;
+}
+
+@media (max-width: 767px) {
+ /* line 11, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider {
+ height: 600px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 11, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider {
+ height: 600px;
+ }
+}
+
+/* line 23, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .single_slider .slider_text h3 {
+ color: #ffffff;
+ font-family: "Yeseva One", cursive;
+ font-size: 65px;
+ font-weight: 900;
+ margin-bottom: 4px;
+ line-height: 75px;
+}
+
+@media (max-width: 767px) {
+ /* line 23, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider .slider_text h3 {
+ font-size: 33px;
+ line-height: 40px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 23, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider .slider_text h3 {
+ font-size: 30px;
+ line-height: 46px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 23, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider .slider_text h3 {
+ font-size: 35px;
+ line-height: 45px;
+ }
+}
+
+/* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .single_slider .slider_text p {
+ font-size: 16px;
+ font-weight: 400;
+ color: #ffffff;
+ margin-bottom: 0;
+ margin-top: 0;
+ line-height: 26px;
+ display: inline-block;
+ position: relative;
+ margin-bottom: 41px;
+ margin-top: 22px;
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider .slider_text p {
+ font-size: 16px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+ .slider_area .single_slider .slider_text p {
+ font-size: 16px;
+ }
+}
+
+/* line 64, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .owl-dots {
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ bottom: 25px;
+}
+
+/* line 69, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .owl-dots .owl-dot {
+ width: 10px;
+ height: 10px;
+ background: #000;
+ border-radius: 50%;
+ display: inline-block;
+ background-color: rgba(252, 229, 207, 0.2);
+ margin: 0 6px;
+}
+
+/* line 77, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_slider.scss */
+.slider_area .owl-dots .owl-dot.active {
+ background: #fff;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area {
+ padding-top: 150px;
+ padding-bottom: 150px;
+ background: #FDF9F6;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area {
+ padding-top: 40px;
+ padding-bottom: 40px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area {
+ padding-top: 80px;
+ padding-bottom: 80px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area {
+ padding-top: 100px;
+ padding-bottom: 100px;
+ }
+}
+
+/* line 18, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .section_title p {
+ color: #575757;
+}
+
+/* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_info {
+ padding-left: 68px;
+}
+
+@media (max-width: 767px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_info {
+ padding-left: 0;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_info {
+ padding-left: 0;
+ }
+}
+
+/* line 30, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_info .opening_hour {
+ font-family: "Yeseva One", cursive;
+ font-size: 30px;
+ font-weight: 400;
+ color: #252219;
+ margin-bottom: 55px;
+ margin-top: 37px;
+}
+
+/* line 37, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_info .opening_hour span {
+ font-family: "Lato", sans-serif;
+ color: #252219;
+ font-size: 20px;
+ margin-left: 6px;
+ display: inline-block;
+}
+
+@media (max-width: 767px) {
+ /* line 37, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_info .opening_hour span {
+ margin-left: 0;
+ }
+}
+
+/* line 49, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_thumbs {
+ position: relative;
+ -webkit-justify-content: flex-end;
+ -moz-justify-content: flex-end;
+ -ms-justify-content: flex-end;
+ justify-content: flex-end;
+ -ms-flex-pack: flex-end;
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 49, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs {
+ -webkit-justify-content: flex-start;
+ -moz-justify-content: flex-start;
+ -ms-justify-content: flex-start;
+ justify-content: flex-start;
+ -ms-flex-pack: flex-start;
+ margin-top: 30px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 49, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 60, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_thumbs img {
+ width: 100%;
+}
+
+/* line 63, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_thumbs .large_img_1 {
+ padding-right: 156px;
+}
+
+@media (max-width: 767px) {
+ /* line 63, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs .large_img_1 {
+ padding-right: 40px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 63, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs .large_img_1 {
+ padding-right: 0px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 63, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs .large_img_1 {
+ padding-right: 100px;
+ }
+}
+
+/* line 75, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_thumbs .small_img_1 {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ border-top: 15px solid #ffffff;
+ border-left: 15px solid #ffffff;
+ top: 80px;
+}
+
+@media (max-width: 767px) {
+ /* line 75, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs .small_img_1 {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ border-top: 15px solid
+ #ffffff;
+ border-left: 15px solid
+ #ffffff;
+ top: auto;
+ width: 50%;
+ height: 60%;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 75, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+ .about_area .about_thumbs .small_img_1 {
+ bottom: -30px;
+ }
+}
+
+/* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_about.scss */
+.about_area .about_thumbs .small_img_1 img {
+ width: 100%;
+ height: 100%;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area {
+ position: relative;
+ background: #fdf9f6;
+ padding-top: 144px;
+ padding-bottom: 100px;
+ z-index: 0;
+}
+
+/* line 7, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area::after {
+ position: absolute;
+ left: 0;
+ top: 0;
+ content: '';
+ background-image: url(../img/banner/prise_bg.png);
+ height: 100%;
+ width: 100%;
+ opacity: .04;
+ z-index: -1;
+}
+
+/* line 19, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .prise_title h4 {
+ font-size: 25px;
+ color: #eb592d;
+ margin-bottom: 35px;
+}
+
+/* line 25, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service {
+ margin-bottom: 50px;
+}
+
+/* line 29, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .service_inner .thumb img {
+ width: 60px;
+ height: 60px;
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ overflow: hidden;
+}
+
+/* line 37, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .hair_style_info {
+ padding-left: 20px;
+}
+
+/* line 39, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .hair_style_info .prise {
+ margin-bottom: 5px;
+ position: relative;
+}
+
+/* line 42, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .hair_style_info .prise::before {
+ position: absolute;
+ height: 1px;
+ content: '';
+ border-bottom: 1px dashed #d7d4d1;
+ bottom: 7px;
+ left: 29%;
+ right: 12%;
+}
+
+/* line 51, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .hair_style_info .prise span {
+ font-size: 16px;
+ color: #222222;
+ font-family: "Yeseva One", cursive;
+}
+
+/* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .single_service .hair_style_info p {
+ font-size: 16px;
+ color: #7f7f7f;
+ font-weight: 400;
+ margin-bottom: 0;
+}
+
+@media (max-width: 767px) {
+ /* line 65, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+ .prising_area .prising_active {
+ display: block !important;
+ }
+}
+
+/* line 69, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .prising_active .single_prising {
+ overflow: hidden;
+ -webkit-box-flex: 45%;
+ -ms-flex: 45% 0 0px;
+ flex: 45% 0 0;
+}
+
+@media (max-width: 767px) {
+ /* line 69, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+ .prising_area .prising_active .single_prising {
+ -webkit-box-flex: 100%;
+ -ms-flex: 100% 0 0px;
+ flex: 100% 0 0;
+ }
+}
+
+/* line 79, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .prising_active .single_prising .service_inner {
+ float: left;
+ overflow: hidden;
+}
+
+/* line 84, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .prising_active .single_prising .hair_style_info {
+ overflow: hidden;
+}
+
+/* line 92, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div.owl-next {
+ left: auto;
+ right: 0;
+}
+
+/* line 96, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div.owl-prev {
+ left: auto;
+ right: 54px;
+}
+
+/* line 100, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div {
+ left: 0;
+ background: #000;
+ width: 34px;
+ height: 34px;
+ line-height: 34px;
+ text-align: center;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border: 1px solid #ddc4c4;
+ background: #fff;
+ font-size: 14px;
+ color: #f39b80 !important;
+ left: auto;
+ top: -96px;
+ right: 10px;
+ -webkit-transform: translateY(0%);
+ -ms-transform: translateY(0%);
+ transform: translateY(0%);
+}
+
+/* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div {
+ color: #7E8D9A;
+}
+
+/* line 121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div:hover {
+ background: #F91842;
+ border-color: #eb592d;
+ color: #fff !important;
+}
+
+/* line 127, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div.owl-prev i {
+ position: relative;
+ right: 1px;
+ top: -1px;
+}
+
+/* line 133, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_prising.scss */
+.prising_area .owl-carousel .owl-nav div.owl-next i {
+ position: relative;
+ right: 0;
+ top: -1px;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area {
+ padding-top: 150px;
+ padding-bottom: 120px;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+ .service_area {
+ padding-top: 60px;
+ padding-bottom: 30px;
+ }
+}
+
+/* line 9, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_thumb {
+ overflow: hidden;
+}
+
+/* line 11, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_thumb img {
+ width: 100%;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+ -webkit-transform: scale(1);
+ -moz-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1);
+}
+
+/* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_content {
+ position: relative;
+ padding: 64px 60px;
+ border: 1px solid #ffd1af;
+ border-top: none;
+ margin-bottom: 30px;
+}
+
+@media (max-width: 767px) {
+ /* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+ .service_area .single_service .service_content {
+ padding: 40px 30px 30px 30px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+ .service_area .single_service .service_content {
+ padding: 40px 30px 30px 30px;
+ }
+}
+
+/* line 29, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_content .icon {
+ width: 55px;
+ height: 55px;
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ -webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
+ -moz-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
+ box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
+ color: #eb592d;
+ text-align: center;
+ line-height: 55px;
+ position: absolute;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-top: -25px;
+ z-index: 0;
+ background: #fff;
+ top: 0;
+ font-size: 25px;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 47, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_content h3 {
+ font-size: 25px;
+ font-weight: 400;
+ color: #141419;
+}
+
+/* line 52, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service .service_content p {
+ font-size: 16px;
+ line-height: 32px;
+ color: #575757;
+ font-weight: 400;
+ margin-bottom: 0;
+}
+
+/* line 62, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service:hover .service_thumb img {
+ -webkit-transform: scale(1.1);
+ -moz-transform: scale(1.1);
+ -ms-transform: scale(1.1);
+ transform: scale(1.1);
+}
+
+/* line 67, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_service.scss */
+.service_area .single_service:hover .service_content .icon {
+ -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
+ -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
+ box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area {
+ padding-bottom: 120px;
+ padding-top: 150px;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+ .team_area {
+ padding-top: 60px;
+ padding-bottom: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 8, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+ .team_area .single_team_member {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 12, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member .team_thumb {
+ overflow: hidden;
+}
+
+/* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member .team_thumb img {
+ width: 100%;
+ -webkit-transform: scale(1);
+ -moz-transform: scale(1);
+ -ms-transform: scale(1);
+ transform: scale(1);
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 20, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member .member_info {
+ background: #fdf9f6;
+ padding: 36px 0 35px 0;
+}
+
+/* line 23, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member .member_info h3 {
+ font-size: 25px;
+ font-weight: 400;
+ color: #222222;
+ margin-bottom: 0;
+ margin-bottom: 6px;
+}
+
+/* line 30, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member .member_info p {
+ font-size: 18px;
+ font-weight: 400;
+ font-family: "Lato", sans-serif;
+ color: #eb592d;
+ margin-bottom: 0;
+}
+
+/* line 40, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_team.scss */
+.team_area .single_team_member:hover .team_thumb img {
+ -webkit-transform: scale(1.1);
+ -moz-transform: scale(1.1);
+ -ms-transform: scale(1.1);
+ transform: scale(1.1);
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area {
+ padding-top: 150px;
+ padding-bottom: 120px;
+ background: #fdf9f6;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+ .make_apppointment_area {
+ padding-top: 60px;
+ padding-bottom: 30px;
+ }
+}
+
+/* line 9, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form {
+ margin-bottom: 30px;
+}
+
+/* line 12, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field {
+ margin-bottom: 32px;
+}
+
+/* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field input, .make_apppointment_area .appoint_ment_form form .single_field textarea {
+ width: 100%;
+ border: 0;
+ padding-bottom: 3px;
+ border-bottom: 1px solid #c1c1c1;
+ padding-left: 10px;
+ height: 50px;
+ font-family: "Lato", sans-serif;
+ color: #000;
+ background: transparent;
+}
+
+/* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field input::placeholder, .make_apppointment_area .appoint_ment_form form .single_field textarea::placeholder {
+ color: #96989a;
+ font-weight: 400;
+ font-family: "Lato", sans-serif;
+}
+
+/* line 29, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field input:focus, .make_apppointment_area .appoint_ment_form form .single_field textarea:focus {
+ outline: none;
+}
+
+/* line 33, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field textarea {
+ resize: none;
+ margin-top: 41px;
+ padding: 11px 20px 14px 10px;
+}
+
+/* line 38, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form .single_field:last-child {
+ margin-bottom: 0;
+}
+
+/* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form button {
+ transition: .3s;
+ cursor: pointer;
+}
+
+/* line 47, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appoint_ment_form form p {
+ margin-top: 17px;
+ margin-bottom: 40px;
+ font-size: 16px;
+ font-weight: 400;
+ color: #464444;
+ line-height: 30px;
+}
+
+/* line 60, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appointMent_info .single_appontment {
+ margin-bottom: 36px;
+}
+
+/* line 62, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appointMent_info .single_appontment h4 {
+ font-size: 18px;
+ color: #4a4948;
+ font-weight: 400;
+}
+
+/* line 67, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appointMent_info .single_appontment p {
+ font-size: 16px;
+ line-height: 30px;
+ color: #7f7f7f;
+ font-weight: 400;
+ margin-bottom: 0;
+}
+
+/* line 73, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_make_apointment.scss */
+.make_apppointment_area .appointMent_info .single_appontment p span {
+ flex: 50% 0 0;
+}
+
+/* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area {
+ background-size: cover;
+ background-position: center center;
+ background-repeat: no-repeat;
+ position: relative;
+ padding: 0px 0 144px 0;
+ background: #fff;
+}
+
+@media (max-width: 767px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+ .testimonial_area {
+ padding: 0 0 50px 0;
+ }
+}
+
+/* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .single_testmonial p {
+ color: #7f7f7f;
+ font-weight: 400;
+ font-size: 18px;
+ line-height: 32px;
+ margin-bottom: 40px;
+ font-family: "Lato", sans-serif;
+ font-style: italic;
+}
+
+@media (min-width: 320px) and (max-width: 991px) {
+ /* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+ .testimonial_area .single_testmonial p br {
+ display: none;
+ }
+}
+
+/* line 30, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .single_testmonial .testmonial_author .thumb {
+ width: 60px;
+ height: 60px;
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ margin: auto;
+ margin: auto auto 21px auto;
+}
+
+/* line 37, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .single_testmonial .testmonial_author h3 {
+ color: #8c8c8c;
+ font-size: 16px;
+ font-weight: 400;
+ font-family: "Yeseva One", cursive;
+}
+
+/* line 45, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-item img {
+ display: inline-block;
+ width: auto;
+}
+
+/* line 49, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div.owl-next {
+ left: auto;
+ right: 98px;
+}
+
+/* line 53, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div {
+ left: 0;
+ background: #000;
+ width: 34px;
+ height: 34px;
+ line-height: 34px;
+ text-align: center;
+ -webkit-border-radius: 4px;
+ -moz-border-radius: 4px;
+ border-radius: 4px;
+ border: 1px solid #ddc4c4;
+ background: #fff;
+ font-size: 14px;
+ color: #f39b80 !important;
+ left: 98px;
+ top: 20%;
+ -webkit-transform: translateY(-80%);
+ -ms-transform: translateY(-80%);
+ transform: translateY(-80%);
+}
+
+/* line 71, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div {
+ color: #7E8D9A;
+}
+
+/* line 73, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div:hover {
+ background: #F91842;
+ border-color: #eb592d;
+ color: #fff !important;
+}
+
+/* line 79, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div.owl-prev i {
+ position: relative;
+ right: 1px;
+ top: -1px;
+}
+
+/* line 85, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.testimonial_area .owl-carousel .owl-nav div.owl-next i {
+ position: relative;
+ right: 0;
+ top: -1px;
+}
+
+/* line 94, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.Information_area {
+ background-image: url(../img/banner/info_banner.png);
+ background-repeat: no-repeat;
+ background-size: cover;
+ background-position: center center;
+ padding: 162px 0;
+}
+
+@media (max-width: 767px) {
+ /* line 94, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+ .Information_area {
+ padding: 100px 0;
+ }
+}
+
+/* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.Information_area .info_text h3 {
+ font-size: 46px;
+ font-weight: 300;
+ color: #fff;
+ margin-bottom: 0;
+}
+
+@media (max-width: 767px) {
+ /* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+ .Information_area .info_text h3 {
+ font-size: 30px;
+ }
+}
+
+/* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.Information_area .info_text p {
+ font-size: 15px;
+ font-weight: 400;
+ color: #E8E8E8;
+ margin: 25px 0;
+}
+
+/* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.Information_area .info_text a.boxed-btn3 {
+ padding: 14px 40px;
+}
+
+/* line 127, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.newsletter_form {
+ position: relative;
+ margin-bottom: 20px;
+}
+
+/* line 130, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.newsletter_form input {
+ width: 100%;
+ height: 45px;
+ background: #fff;
+ padding-left: 20px;
+ font-size: 16px;
+ color: #000;
+ border: none;
+}
+
+/* line 138, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.newsletter_form input::placeholder {
+ font-size: 16px;
+ color: #919191;
+}
+
+/* line 143, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.newsletter_form button {
+ position: absolute;
+ top: 0;
+ right: 0;
+ height: 100%;
+ border: none;
+ font-size: 14px;
+ color: #fff;
+ background: #A70000;
+ padding: 10px;
+ padding: 0 22px;
+ cursor: pointer;
+}
+
+/* line 157, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_testmonial.scss */
+.newsletter_text {
+ font-size: 16px;
+ color: #BABABA;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area {
+ padding-bottom: 150px;
+ padding-top: 120px;
+}
+
+/* line 4, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area.minus-padding {
+ padding-top: 0;
+ margin-top: -16px;
+}
+
+@media (max-width: 767px) {
+ /* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .gallery_area {
+ padding-top: 60px;
+ padding-bottom: 60px;
+ }
+}
+
+/* line 12, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery {
+ overflow: hidden;
+}
+
+/* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery .thumb {
+ position: relative;
+ overflow: hidden;
+}
+
+/* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery .thumb img {
+ width: 100%;
+ -webkit-transform: scaleX(1);
+ -moz-transform: scaleX(1);
+ -ms-transform: scaleX(1);
+ transform: scaleX(1);
+ -webkit-transition: 0.5s;
+ -moz-transition: 0.5s;
+ -o-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 22, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery .thumb .image_hover {
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(188, 147, 33, 0.5);
+ transform: translateX(-40%);
+ opacity: 0;
+ -webkit-transition: 0.5s;
+ -moz-transition: 0.5s;
+ -o-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 32, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery .thumb .image_hover a {
+ position: absolute;
+ top: 44%;
+ left: 50%;
+ -webkit-transform: translate(-50%);
+ -moz-transform: translate(-50%);
+ -ms-transform: translate(-50%);
+ transform: translate(-50%);
+ font-size: 35px;
+ color: #fff;
+}
+
+/* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery:hover .image_hover {
+ transform: translateX(0%);
+ opacity: 1;
+}
+
+/* line 47, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gallery_area .single_gallery:hover img {
+ width: 100%;
+ -webkit-transform: scaleX(1.2);
+ -moz-transform: scaleX(1.2);
+ -ms-transform: scaleX(1.2);
+ transform: scaleX(1.2);
+}
+
+/* line 55, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area {
+ background: #FFFBF0;
+}
+
+/* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_info {
+ padding: 200px 0;
+ padding-left: 400px;
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info {
+ padding: 100px 60px;
+ padding-left: 60px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info {
+ padding: 0px 0px;
+ padding-left: 60px;
+ }
+}
+
+@media (min-width: 1200px) and (max-width: 1500px) {
+ /* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info {
+ padding: 0px 0px;
+ padding-left: 60px;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info {
+ padding: 60px 0;
+ padding-right: 0px;
+ padding-left: 0px;
+ padding-left: 15px;
+ padding-right: 15px;
+ }
+}
+
+/* line 83, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_info .about_info {
+ padding-left: 0;
+}
+
+@media (max-width: 767px) {
+ /* line 83, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info .about_info {
+ padding-right: 0;
+ }
+}
+
+/* line 88, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_info .about_info p {
+ font-size: 16px;
+ line-height: 28px;
+ font-size: 16px;
+ line-height: 28px;
+ margin-top: 0;
+ margin-bottom: 47px;
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 88, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info .about_info p {
+ padding-right: 30px;
+ }
+}
+
+@media (min-width: 992px) and (max-width: 1200px) {
+ /* line 98, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info .about_info p br {
+ display: none;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 106, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+ .video_area .video_info .about_info a {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 115, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_thumb .video_thumb_inner {
+ position: relative;
+}
+
+/* line 117, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_thumb .video_thumb_inner img {
+ width: 100%;
+}
+
+/* line 120, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_thumb .video_thumb_inner a {
+ width: 94px;
+ height: 94px;
+ background: #fff;
+ -webkit-border-radius: 50%;
+ -moz-border-radius: 50%;
+ border-radius: 50%;
+ display: inline-block;
+ font-size: 22px;
+ color: #EB592D;
+ line-height: 94px;
+ text-align: center;
+ top: 50%;
+ left: 0;
+ right: 0;
+ margin: auto;
+ -webkit-transform: translateY(-50%);
+ -moz-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ position: absolute;
+}
+
+/* line 136, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.video_area .video_thumb .video_thumb_inner a::before {
+ position: absolute;
+ top: 0;
+ right: 0;
+ content: "";
+ border-radius: 50%;
+ left: 0;
+ bottom: 0;
+ box-shadow: 0 0 0 0 black;
+ transform: scale(1);
+ animation: pulse 2s infinite;
+ box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
+}
+
+/* line 155, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.pulse:hover {
+ animation: none;
+}
+
+@keyframes pulse {
+ 0% {
+ -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
+ box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
+ }
+ 100% {
+ -moz-box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
+ box-shadow: 0 0 0 30px rgba(204, 169, 44, 0);
+ }
+}
+
+/* line 184, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+#test-form .white-popup-block .popup_inner .gj-datepicker span {
+ color: red;
+}
+
+/* line 189, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+#test-form .white-popup-block input {
+ width: 100%;
+ height: 50px;
+}
+
+/* line 196, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gj-datepicker input {
+ width: 100%;
+ height: 50px;
+ border: 1px solid #ddd;
+ padding: 17px;
+ font-size: 12px;
+ color: #919191;
+ margin-bottom: 20px;
+}
+
+/* line 205, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gj-datepicker-md [role="right-icon"] {
+ position: absolute;
+ right: 0px;
+ top: 0px;
+ font-size: 14px;
+ color: #919191;
+ margin-right: 15px;
+ top: 16px;
+}
+
+/* line 214, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gj-picker-md {
+ font-family: "Roboto","Helvetica","Arial",sans-serif;
+ font-size: 16px;
+ font-weight: 400;
+ letter-spacing: .04em;
+ line-height: 1;
+ color: rgba(0, 0, 0, 0.87);
+ padding: 10px;
+ padding: 20px;
+ border: 1px solid #E0E0E0;
+}
+
+/* line 225, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+#timepicker {
+ width: 100%;
+ height: 50px;
+ border: 1px solid #ddd;
+ padding: 20px;
+ text-transform: capitalize;
+ color: #919191;
+}
+
+/* line 233, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.gj-timepicker.gj-timepicker-md.gj-unselectable i {
+ top: 16px;
+ right: 12px;
+ font-size: 18px;
+ color: #919191;
+}
+
+/* line 239, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.popup_inner input {
+ width: 100%;
+ height: 50px;
+ margin-bottom: 30px;
+ color: #000;
+ padding: 18px;
+ border: 1px solid #ddd;
+}
+
+/* line 246, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.popup_inner input:focus {
+ outline: none;
+}
+
+/* line 249, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_gallery.scss */
+.popup_inner input::placeholder {
+ color: #919191;
+ font-size: 16px;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer {
+ background-repeat: no-repeat;
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ background: #0d0e0f;
+ position: relative;
+ z-index: 0;
+}
+
+/* line 9, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top {
+ padding-top: 130px;
+ padding-bottom: 110px;
+}
+
+@media (max-width: 767px) {
+ /* line 9, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .footer_top {
+ padding-top: 60px;
+ padding-bottom: 30px;
+ }
+}
+
+/* line 17, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .address_text {
+ font-size: 16px;
+ font-weight: 400;
+ color: #959595;
+}
+
+@media (max-width: 767px) {
+ /* line 16, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .footer_top .footer_widget {
+ margin-bottom: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 16, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .footer_top .footer_widget {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 28, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .links {
+ position: relative;
+ top: -14px;
+}
+
+/* line 32, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .links.double_links li {
+ width: 50%;
+ float: left;
+}
+
+/* line 38, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .footer_title {
+ font-size: 18px;
+ font-weight: 400;
+ color: #fff;
+ text-transform: capitalize;
+ margin-bottom: 38px;
+ font-family: "Yeseva One", cursive;
+ position: relative;
+ margin-top: 20px;
+}
+
+@media (max-width: 767px) {
+ /* line 38, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .footer_top .footer_widget .footer_title {
+ margin-bottom: 20px;
+ }
+}
+
+/* line 51, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .footer_logo {
+ font-size: 22px;
+ font-weight: 400;
+ color: #fff;
+ text-transform: capitalize;
+ margin-bottom: 35px;
+}
+
+@media (max-width: 767px) {
+ /* line 51, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .footer_top .footer_widget .footer_logo {
+ margin-bottom: 20px;
+ }
+}
+
+/* line 61, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p {
+ color: #AAB1B7;
+ font-size: 14px;
+ font-weight: 400;
+ line-height: 26px;
+ color: #AAB1B7;
+}
+
+/* line 68, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p a {
+ color: #AAB1B7;
+}
+
+/* line 70, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p a:hover {
+ color: #eb592d;
+}
+
+/* line 76, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text {
+ font-size: 16px;
+ color: #B2B2B2;
+ margin-bottom: 23px;
+ font-weight: 400;
+ line-height: 26px;
+}
+
+/* line 82, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text a.domain {
+ color: #B2B2B2;
+ font-weight: 400;
+}
+
+/* line 85, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text a.domain:hover {
+ color: #eb592d;
+ border-bottom: 1px solid #eb592d;
+}
+
+/* line 91, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text.doanar a {
+ font-weight: 500;
+ color: #B2B2B2;
+}
+
+/* line 95, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text.doanar a:hover {
+ color: #eb592d;
+ border-bottom: 1px solid #eb592d;
+}
+
+/* line 99, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget p.footer_text.doanar a.first {
+ margin-bottom: 10px;
+}
+
+/* line 107, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget ul li {
+ color: #ACACAC;
+ font-size: 16px;
+ line-height: 40px;
+}
+
+/* line 111, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget ul li a {
+ color: #959595;
+ font-weight: 400;
+ font-family: "Lato", sans-serif;
+}
+
+/* line 115, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget ul li a:hover {
+ color: #eb592d;
+}
+
+/* line 121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_form {
+ position: relative;
+ margin-bottom: 20px;
+}
+
+/* line 124, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_form input {
+ width: 100%;
+ height: 50px;
+ background: #F5FBFF;
+ padding-left: 20px;
+ font-size: 15px;
+ color: #000;
+ border: none;
+ border: 1px solid #E8E8E8;
+ border-radius: 30px;
+ font-family: "Lato", sans-serif;
+ padding-right: 120px;
+}
+
+/* line 136, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_form input::placeholder {
+ font-size: 15px;
+ color: #AAB1B7;
+}
+
+/* line 140, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_form input:focus {
+ outline: none;
+}
+
+/* line 144, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_form button {
+ position: absolute;
+ top: 0;
+ right: 0;
+ height: 40px;
+ border: none;
+ font-size: 14px;
+ color: #fff;
+ background: #eb592d;
+ padding: 10px;
+ padding: 0 22px;
+ cursor: pointer;
+ border-radius: 30px;
+ top: 5px;
+ right: 5px;
+ font-size: 14px;
+ font-weight: 500;
+ font-family: "Lato", sans-serif;
+}
+
+/* line 164, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .newsletter_text {
+ font-size: 14px;
+ color: #AAB1B7;
+ line-height: 26px;
+ font-family: "Lato", sans-serif;
+}
+
+/* line 170, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .instagram_feed {
+ margin: -7.5px -7.5px 0 -7.5px;
+}
+
+/* line 172, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .instagram_feed .single_insta {
+ width: 33.33%;
+ float: left;
+ padding: 7.5px;
+ overflow: hidden;
+}
+
+/* line 178, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .footer_top .footer_widget .instagram_feed .single_insta img {
+ width: 100%;
+ -webkit-border-radius: 5px;
+ -moz-border-radius: 5px;
+ border-radius: 5px;
+}
+
+/* line 186, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .copy-right_text {
+ padding-bottom: 32px;
+}
+
+/* line 188, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .copy-right_text .copy_right {
+ font-size: 15px;
+ color: #888888;
+ margin-bottom: 0;
+ font-weight: 400;
+}
+
+@media (max-width: 767px) {
+ /* line 188, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .copy-right_text .copy_right {
+ font-size: 15px;
+ }
+}
+
+/* line 196, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .copy-right_text .copy_right a {
+ color: #eb592d;
+}
+
+/* line 201, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .socail_links {
+ margin-top: 26px;
+}
+
+@media (max-width: 767px) {
+ /* line 201, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+ .footer .socail_links {
+ margin-top: 20px;
+ }
+}
+
+/* line 207, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .socail_links ul li {
+ display: inline-block;
+}
+
+/* line 210, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .socail_links ul li a {
+ font-size: 15px;
+ color: #C3B2F0;
+ width: 30px;
+ display: inline-block;
+ text-align: center;
+ background: transparent;
+ margin-right: 7px;
+ color: #FFFFFF;
+ line-height: 40px !important;
+ color: #E8E8E8;
+}
+
+/* line 225, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_footer.scss */
+.footer .socail_links ul li a:hover {
+ color: #eb592d !important;
+ border-color: transparent;
+}
+
+/* line 1, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.breadcam_bg {
+ background-image: url(../img/banner/bradcam.png);
+}
+
+/* line 4, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.breadcam_bg_1 {
+ background-image: url(../img/banner/bradcam2.png);
+}
+
+/* line 7, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.breadcam_bg_2 {
+ background-image: url(../img/banner/bradcam3.png);
+}
+
+/* line 10, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.bradcam_area {
+ background-size: cover;
+ background-position: center center;
+ padding: 187px 0 115px 0;
+}
+
+@media (max-width: 767px) {
+ /* line 10, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .bradcam_area {
+ padding: 150px 0;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 10, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .bradcam_area {
+ padding: 150px 0;
+ }
+}
+
+/* line 20, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.bradcam_area h3 {
+ font-size: 65px;
+ color: #fff;
+ font-weight: 400;
+ margin-bottom: 0;
+ text-transform: capitalize;
+}
+
+@media (max-width: 767px) {
+ /* line 20, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .bradcam_area h3 {
+ font-size: 30px;
+ }
+}
+
+@media (min-width: 768px) and (max-width: 991px) {
+ /* line 20, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .bradcam_area h3 {
+ font-size: 40px;
+ }
+}
+
+/* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box {
+ background: #fff;
+ display: inline-block;
+ z-index: 9;
+ width: 681px;
+ padding: 60px 40px;
+}
+
+@media (max-width: 767px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .popup_box {
+ width: 320px;
+ padding: 45px 30px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 35, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .popup_box {
+ width: 420px !important;
+ padding: 45px 30px;
+ }
+}
+
+/* line 54, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box h3 {
+ text-align: center;
+ font-size: 22px;
+ color: #1F1F1F;
+ margin-bottom: 46px;
+}
+
+/* line 60, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box .boxed-btn3 {
+ width: 100%;
+ text-transform: capitalize;
+}
+
+/* line 64, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box .nice-select {
+ -webkit-tap-highlight-color: transparent;
+ background-color: #fff;
+ /* border-radius: 5px; */
+ border: solid 1px #E2E2E2;
+ box-sizing: border-box;
+ clear: both;
+ cursor: pointer;
+ display: block;
+ float: left;
+ font-family: "Lato", sans-serif;
+ font-weight: normal;
+ width: 100% !important;
+ /* height: 42px; */
+ line-height: 50px;
+ outline: none;
+ padding-left: 18px;
+ padding-right: 30px;
+ position: relative;
+ text-align: left !important;
+ -webkit-transition: all 0.2s ease-in-out;
+ transition: all 0.2s ease-in-out;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ white-space: nowrap;
+ width: auto;
+ border-radius: 0;
+ margin-bottom: 30px;
+ height: 50px !important;
+ font-size: 16px;
+ font-weight: 400;
+ color: #919191;
+}
+
+/* line 98, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box .nice-select::after {
+ content: "\f0d7";
+ display: block;
+ height: 5px;
+ margin-top: -5px;
+ pointer-events: none;
+ position: absolute;
+ right: 17px;
+ top: 3px;
+ transition: all 0.15s ease-in-out;
+ width: 5px;
+ font-family: fontawesome;
+ color: #919191;
+ font-size: 15px;
+}
+
+/* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box .nice-select.open .list {
+ opacity: 1;
+ pointer-events: auto;
+ -webkit-transform: scale(1) translateY(0);
+ -ms-transform: scale(1) translateY(0);
+ transform: scale(1) translateY(0);
+ height: 200px;
+ overflow-y: scroll;
+}
+
+/* line 122, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.popup_box .nice-select.list {
+ height: 200px;
+ overflow-y: scroll;
+}
+
+/* line 128, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+#test-form {
+ display: inline-block;
+ margin: auto;
+ text-align: center;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ -webkit-transform: translate(-50%, -50%);
+ -moz-transform: translate(-50%, -50%);
+ -ms-transform: translate(-50%, -50%);
+ transform: translate(-50%, -50%);
+}
+
+@media (max-width: 767px) {
+ /* line 128, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ #test-form {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ -webkit-transform: none;
+ -moz-transform: none;
+ -ms-transform: none;
+ transform: none;
+ }
+}
+
+/* line 143, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+#test-form .mfp-close-btn-in .mfp-close {
+ color: #333;
+ display: none !important;
+}
+
+/* line 148, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+#test-form button.mfp-close {
+ display: none !important;
+}
+
+@media (max-width: 767px) {
+ /* line 148, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ #test-form button.mfp-close {
+ display: block !important;
+ position: absolute;
+ left: 0;
+ right: 0;
+ margin: auto;
+ }
+}
+
+/* line 159, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+#test-form button.mfp-close {
+ overflow: visible;
+ cursor: pointer;
+ background: transparent;
+ border: 0;
+ -webkit-appearance: none;
+ display: block;
+ outline: none;
+ padding: 0;
+ z-index: 1046;
+ box-shadow: none;
+ touch-action: manipulation;
+ width: 40px;
+ height: 40px;
+ background: #4A3600;
+ text-align: center;
+ line-height: 20px;
+ position: absolute;
+ right: 0;
+ border-bottom-right-radius: 20px;
+ border-bottom-left-radius: 20px;
+ position: absolute;
+ right: -6px;
+ color: #fff !important;
+}
+
+/* line 186, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+.mfp-bg {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1042;
+ overflow: hidden;
+ position: fixed;
+ background: #4A3600;
+ opacity: 0.6;
+}
+
+@media (max-width: 767px) {
+ /* line 205, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .gj-picker.gj-picker-md.timepicker {
+ width: 310px;
+ left: 6px !important;
+ }
+}
+
+@media (max-width: 767px) {
+ /* line 212, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_bradcam.scss */
+ .gj-picker.gj-picker-md.datepicker.gj-unselectable {
+ width: 320px;
+ left: 0 !important;
+ }
+}
+
+/*=================== contact banner start ====================*/
+/* line 3, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.dropdown .dropdown-menu {
+ -webkit-transition: all 0.3s;
+ -moz-transition: all 0.3s;
+ -ms-transition: all 0.3s;
+ -o-transition: all 0.3s;
+ transition: all 0.3s;
+}
+
+/* line 10, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info {
+ margin-bottom: 25px;
+}
+
+/* line 13, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info__icon {
+ margin-right: 20px;
+}
+
+/* line 16, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info__icon i, .contact-info__icon span {
+ color: #8f9195;
+ font-size: 27px;
+}
+
+/* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info .media-body h3 {
+ font-size: 16px;
+ margin-bottom: 0;
+ font-size: 16px;
+ color: #2a2a2a;
+}
+
+/* line 30, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info .media-body h3 a:hover {
+ color: #222222;
+}
+
+/* line 36, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-info .media-body p {
+ color: #8a8a8a;
+}
+
+/*=================== contact banner end ====================*/
+/*=================== contact form start ====================*/
+/* line 45, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-title {
+ font-size: 27px;
+ font-weight: 600;
+ margin-bottom: 20px;
+}
+
+/* line 53, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact label {
+ font-size: 14px;
+}
+
+/* line 57, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact .form-group {
+ margin-bottom: 30px;
+}
+
+/* line 61, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact .form-control {
+ border: 1px solid #e5e6e9;
+ border-radius: 0px;
+ height: 48px;
+ padding-left: 18px;
+ font-size: 13px;
+ background: transparent;
+}
+
+/* line 69, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact .form-control:focus {
+ outline: 0;
+ box-shadow: none;
+}
+
+/* line 74, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact .form-control::placeholder {
+ font-weight: 300;
+ color: #999999;
+}
+
+/* line 80, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.form-contact textarea {
+ border-radius: 0px;
+ height: 100% !important;
+}
+
+/*=================== contact form end ====================*/
+/* Contact Success and error Area css
+============================================================================================ */
+/* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.modal-message .modal-dialog {
+ position: absolute;
+ top: 36%;
+ left: 50%;
+ transform: translateX(-50%) translateY(-50%) !important;
+ margin: 0px;
+ max-width: 500px;
+ width: 100%;
+}
+
+/* line 106, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.modal-message .modal-dialog .modal-content .modal-header {
+ text-align: center;
+ display: block;
+ border-bottom: none;
+ padding-top: 50px;
+ padding-bottom: 50px;
+}
+
+/* line 112, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.modal-message .modal-dialog .modal-content .modal-header .close {
+ position: absolute;
+ right: -15px;
+ top: -15px;
+ padding: 0px;
+ color: #fff;
+ opacity: 1;
+ cursor: pointer;
+}
+
+/* line 121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.modal-message .modal-dialog .modal-content .modal-header h2 {
+ display: block;
+ text-align: center;
+ padding-bottom: 10px;
+}
+
+/* line 126, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.modal-message .modal-dialog .modal-content .modal-header p {
+ display: block;
+}
+
+/* line 133, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-section {
+ padding: 130px 0 100px;
+}
+
+@media (max-width: 991px) {
+ /* line 133, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+ .contact-section {
+ padding: 70px 0 40px;
+ }
+}
+
+@media only screen and (min-width: 992px) and (max-width: 1200px) {
+ /* line 133, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+ .contact-section {
+ padding: 80px 0 50px;
+ }
+}
+
+/* line 141, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-section .btn_2 {
+ background-color: #191d34;
+ padding: 18px 60px;
+ border-radius: 50px;
+ margin-top: 0;
+}
+
+/* line 146, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_contact.scss */
+.contact-section .btn_2:hover {
+ background-color: #222222;
+}
+
+/* line 75, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.sample-text-area {
+ background: #fff;
+ padding: 100px 0 70px 0;
+}
+
+/* line 80, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.text-heading {
+ margin-bottom: 30px;
+ font-size: 24px;
+}
+
+/* line 85, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+b,
+sup,
+sub,
+u,
+del {
+ color: #222222;
+}
+
+/* line 93, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h1 {
+ font-size: 36px;
+}
+
+/* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h2 {
+ font-size: 30px;
+}
+
+/* line 101, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h3 {
+ font-size: 24px;
+}
+
+/* line 105, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h4 {
+ font-size: 18px;
+}
+
+/* line 109, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h5 {
+ font-size: 16px;
+}
+
+/* line 113, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h6 {
+ font-size: 14px;
+}
+
+/* line 117, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ line-height: 1.2em;
+}
+
+/* line 127, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.typography h1,
+.typography h2,
+.typography h3,
+.typography h4,
+.typography h5,
+.typography h6 {
+ color: #828bb2;
+}
+
+/* line 137, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.button-area {
+ background: #fff;
+}
+
+/* line 138, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.button-area .border-top-generic {
+ padding: 70px 15px;
+ border-top: 1px dotted #eee;
+}
+
+/* line 146, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.button-group-area .genric-btn {
+ margin-right: 10px;
+ margin-top: 10px;
+}
+
+/* line 149, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.button-group-area .genric-btn:last-child {
+ margin-right: 0;
+}
+
+/* line 155, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn {
+ display: inline-block;
+ outline: none;
+ line-height: 40px;
+ padding: 0 30px;
+ font-size: .8em;
+ text-align: center;
+ text-decoration: none;
+ font-weight: 500;
+ cursor: pointer;
+ -webkit-transition: all 0.3s ease 0s;
+ -moz-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+}
+
+/* line 166, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn:focus {
+ outline: none;
+}
+
+/* line 169, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.e-large {
+ padding: 0 40px;
+ line-height: 50px;
+}
+
+/* line 173, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.large {
+ line-height: 45px;
+}
+
+/* line 176, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.medium {
+ line-height: 30px;
+}
+
+/* line 179, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.small {
+ line-height: 25px;
+}
+
+/* line 182, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.radius {
+ border-radius: 3px;
+}
+
+/* line 185, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.circle {
+ border-radius: 20px;
+}
+
+/* line 188, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.arrow {
+ display: -webkit-inline-box;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+}
+
+/* line 195, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.arrow span {
+ margin-left: 10px;
+}
+
+/* line 199, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.default {
+ color: #415094;
+ background: #f9f9ff;
+ border: 1px solid transparent;
+}
+
+/* line 203, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.default:hover {
+ border: 1px solid #f9f9ff;
+ background: #fff;
+}
+
+/* line 208, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.default-border {
+ border: 1px solid #f9f9ff;
+ background: #fff;
+}
+
+/* line 211, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.default-border:hover {
+ color: #415094;
+ background: #f9f9ff;
+ border: 1px solid transparent;
+}
+
+/* line 217, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.primary {
+ color: #fff;
+ background: #222222;
+ border: 1px solid transparent;
+}
+
+/* line 221, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.primary:hover {
+ color: #222222;
+ border: 1px solid #222222;
+ background: #fff;
+}
+
+/* line 227, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.primary-border {
+ color: #222222;
+ border: 1px solid #222222;
+ background: #fff;
+}
+
+/* line 231, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.primary-border:hover {
+ color: #fff;
+ background: #222222;
+ border: 1px solid transparent;
+}
+
+/* line 237, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.success {
+ color: #fff;
+ background: #4cd3e3;
+ border: 1px solid transparent;
+}
+
+/* line 241, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.success:hover {
+ color: #4cd3e3;
+ border: 1px solid #4cd3e3;
+ background: #fff;
+}
+
+/* line 247, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.success-border {
+ color: #4cd3e3;
+ border: 1px solid #4cd3e3;
+ background: #fff;
+}
+
+/* line 251, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.success-border:hover {
+ color: #fff;
+ background: #4cd3e3;
+ border: 1px solid transparent;
+}
+
+/* line 257, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.info {
+ color: #fff;
+ background: #38a4ff;
+ border: 1px solid transparent;
+}
+
+/* line 261, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.info:hover {
+ color: #38a4ff;
+ border: 1px solid #38a4ff;
+ background: #fff;
+}
+
+/* line 267, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.info-border {
+ color: #38a4ff;
+ border: 1px solid #38a4ff;
+ background: #fff;
+}
+
+/* line 271, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.info-border:hover {
+ color: #fff;
+ background: #38a4ff;
+ border: 1px solid transparent;
+}
+
+/* line 277, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.warning {
+ color: #fff;
+ background: #f4e700;
+ border: 1px solid transparent;
+}
+
+/* line 281, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.warning:hover {
+ color: #f4e700;
+ border: 1px solid #f4e700;
+ background: #fff;
+}
+
+/* line 287, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.warning-border {
+ color: #f4e700;
+ border: 1px solid #f4e700;
+ background: #fff;
+}
+
+/* line 291, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.warning-border:hover {
+ color: #fff;
+ background: #f4e700;
+ border: 1px solid transparent;
+}
+
+/* line 297, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.danger {
+ color: #fff;
+ background: #f44a40;
+ border: 1px solid transparent;
+}
+
+/* line 301, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.danger:hover {
+ color: #f44a40;
+ border: 1px solid #f44a40;
+ background: #fff;
+}
+
+/* line 307, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.danger-border {
+ color: #f44a40;
+ border: 1px solid #f44a40;
+ background: #fff;
+}
+
+/* line 311, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.danger-border:hover {
+ color: #fff;
+ background: #f44a40;
+ border: 1px solid transparent;
+}
+
+/* line 317, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.link {
+ color: #415094;
+ background: #f9f9ff;
+ text-decoration: underline;
+ border: 1px solid transparent;
+}
+
+/* line 322, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.link:hover {
+ color: #415094;
+ border: 1px solid #f9f9ff;
+ background: #fff;
+}
+
+/* line 328, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.link-border {
+ color: #415094;
+ border: 1px solid #f9f9ff;
+ background: #fff;
+ text-decoration: underline;
+}
+
+/* line 333, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.link-border:hover {
+ color: #415094;
+ background: #f9f9ff;
+ border: 1px solid transparent;
+}
+
+/* line 339, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.genric-btn.disable {
+ color: #222222, 0.3;
+ background: #f9f9ff;
+ border: 1px solid transparent;
+ cursor: not-allowed;
+}
+
+/* line 347, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.generic-blockquote {
+ padding: 30px 50px 30px 30px;
+ background: #f9f9ff;
+ border-left: 2px solid #222222;
+}
+
+/* line 353, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table-wrap {
+ overflow-x: scroll;
+}
+
+/* line 357, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table {
+ background: #f9f9ff;
+ padding: 15px 0px 30px 0px;
+ min-width: 800px;
+}
+
+/* line 361, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .serial {
+ width: 11.83%;
+ padding-left: 30px;
+}
+
+/* line 365, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .country {
+ width: 28.07%;
+}
+
+/* line 368, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .visit {
+ width: 19.74%;
+}
+
+/* line 371, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .percentage {
+ width: 40.36%;
+ padding-right: 50px;
+}
+
+/* line 375, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-head {
+ display: flex;
+}
+
+/* line 377, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-head .serial,
+.progress-table .table-head .country,
+.progress-table .table-head .visit,
+.progress-table .table-head .percentage {
+ color: #415094;
+ line-height: 40px;
+ text-transform: uppercase;
+ font-weight: 500;
+}
+
+/* line 387, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row {
+ padding: 15px 0;
+ border-top: 1px solid #edf3fd;
+ display: flex;
+}
+
+/* line 391, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .serial,
+.progress-table .table-row .country,
+.progress-table .table-row .visit,
+.progress-table .table-row .percentage {
+ display: flex;
+ align-items: center;
+}
+
+/* line 399, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .country img {
+ margin-right: 15px;
+}
+
+/* line 404, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress {
+ width: 80%;
+ border-radius: 0px;
+ background: transparent;
+}
+
+/* line 408, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar {
+ height: 5px;
+ line-height: 5px;
+}
+
+/* line 411, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-1 {
+ background-color: #6382e6;
+}
+
+/* line 414, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-2 {
+ background-color: #e66686;
+}
+
+/* line 417, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-3 {
+ background-color: #f09359;
+}
+
+/* line 420, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-4 {
+ background-color: #73fbaf;
+}
+
+/* line 423, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-5 {
+ background-color: #73fbaf;
+}
+
+/* line 426, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-6 {
+ background-color: #6382e6;
+}
+
+/* line 429, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-7 {
+ background-color: #a367e7;
+}
+
+/* line 432, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.progress-table .table-row .percentage .progress .progress-bar.color-8 {
+ background-color: #e66686;
+}
+
+/* line 441, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-gallery-image {
+ margin-top: 30px;
+ background-repeat: no-repeat !important;
+ background-position: center center !important;
+ background-size: cover !important;
+ height: 200px;
+}
+
+/* line 449, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.list-style {
+ width: 14px;
+ height: 14px;
+}
+
+/* line 455, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.unordered-list li {
+ position: relative;
+ padding-left: 30px;
+ line-height: 1.82em !important;
+}
+
+/* line 459, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.unordered-list li:before {
+ content: "";
+ position: absolute;
+ width: 14px;
+ height: 14px;
+ border: 3px solid #222222;
+ background: #fff;
+ top: 4px;
+ left: 0;
+ border-radius: 50%;
+}
+
+/* line 473, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list {
+ margin-left: 30px;
+}
+
+/* line 475, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list li {
+ list-style-type: decimal-leading-zero;
+ color: #222222;
+ font-weight: 500;
+ line-height: 1.82em !important;
+}
+
+/* line 480, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list li span {
+ font-weight: 300;
+ color: #828bb2;
+}
+
+/* line 488, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list-alpha li {
+ margin-left: 30px;
+ list-style-type: lower-alpha;
+ color: #222222;
+ font-weight: 500;
+ line-height: 1.82em !important;
+}
+
+/* line 494, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list-alpha li span {
+ font-weight: 300;
+ color: #828bb2;
+}
+
+/* line 502, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list-roman li {
+ margin-left: 30px;
+ list-style-type: lower-roman;
+ color: #222222;
+ font-weight: 500;
+ line-height: 1.82em !important;
+}
+
+/* line 508, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.ordered-list-roman li span {
+ font-weight: 300;
+ color: #828bb2;
+}
+
+/* line 515, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input {
+ display: block;
+ width: 100%;
+ line-height: 40px;
+ border: none;
+ outline: none;
+ background: #f9f9ff;
+ padding: 0 20px;
+}
+
+/* line 523, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input:focus {
+ outline: none;
+}
+
+/* line 528, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.input-group-icon {
+ position: relative;
+}
+
+/* line 530, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.input-group-icon .icon {
+ position: absolute;
+ left: 20px;
+ top: 0;
+ line-height: 40px;
+ z-index: 3;
+}
+
+/* line 535, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.input-group-icon .icon i {
+ color: #797979;
+}
+
+/* line 540, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.input-group-icon .single-input {
+ padding-left: 45px;
+}
+
+/* line 545, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-textarea {
+ display: block;
+ width: 100%;
+ line-height: 40px;
+ border: none;
+ outline: none;
+ background: #f9f9ff;
+ padding: 0 20px;
+ height: 100px;
+ resize: none;
+}
+
+/* line 555, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-textarea:focus {
+ outline: none;
+}
+
+/* line 560, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-primary {
+ display: block;
+ width: 100%;
+ line-height: 40px;
+ border: 1px solid transparent;
+ outline: none;
+ background: #f9f9ff;
+ padding: 0 20px;
+}
+
+/* line 568, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-primary:focus {
+ outline: none;
+ border: 1px solid #222222;
+}
+
+/* line 574, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-accent {
+ display: block;
+ width: 100%;
+ line-height: 40px;
+ border: 1px solid transparent;
+ outline: none;
+ background: #f9f9ff;
+ padding: 0 20px;
+}
+
+/* line 582, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-accent:focus {
+ outline: none;
+ border: 1px solid #eb6b55;
+}
+
+/* line 588, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-secondary {
+ display: block;
+ width: 100%;
+ line-height: 40px;
+ border: 1px solid transparent;
+ outline: none;
+ background: #f9f9ff;
+ padding: 0 20px;
+}
+
+/* line 596, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.single-input-secondary:focus {
+ outline: none;
+ border: 1px solid #f09359;
+}
+
+/* line 602, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-switch {
+ width: 35px;
+ height: 17px;
+ border-radius: 8.5px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 609, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-switch input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+ cursor: pointer;
+}
+
+/* line 619, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-switch input + label {
+ position: absolute;
+ top: 1px;
+ left: 1px;
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ background: #222222;
+ -webkit-transition: all 0.2s;
+ -moz-transition: all 0.2s;
+ -o-transition: all 0.2s;
+ transition: all 0.2s;
+ box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
+ cursor: pointer;
+}
+
+/* line 632, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-switch input:checked + label {
+ left: 19px;
+}
+
+/* line 639, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch {
+ width: 35px;
+ height: 17px;
+ border-radius: 8.5px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 646, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 655, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+}
+
+/* line 663, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input + label:before {
+ content: "";
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ border-radius: 8.5px;
+ cursor: pointer;
+ -webkit-transition: all 0.2s;
+ -moz-transition: all 0.2s;
+ -o-transition: all 0.2s;
+ transition: all 0.2s;
+}
+
+/* line 677, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input + label:after {
+ content: "";
+ position: absolute;
+ top: 1px;
+ left: 1px;
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ background: #fff;
+ -webkit-transition: all 0.2s;
+ -moz-transition: all 0.2s;
+ -o-transition: all 0.2s;
+ transition: all 0.2s;
+ box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
+ cursor: pointer;
+}
+
+/* line 693, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input:checked + label:after {
+ left: 19px;
+}
+
+/* line 696, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-switch input:checked + label:before {
+ background: #222222;
+}
+
+/* line 704, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch {
+ width: 35px;
+ height: 17px;
+ border-radius: 8.5px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 711, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 720, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+}
+
+/* line 728, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input + label:before {
+ content: "";
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ background: transparent;
+ border-radius: 8.5px;
+ -webkit-transition: all 0.2s;
+ -moz-transition: all 0.2s;
+ -o-transition: all 0.2s;
+ transition: all 0.2s;
+ cursor: pointer;
+}
+
+/* line 742, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input + label:after {
+ content: "";
+ position: absolute;
+ top: 1px;
+ left: 1px;
+ width: 15px;
+ height: 15px;
+ border-radius: 50%;
+ background: #fff;
+ -webkit-transition: all 0.2s;
+ -moz-transition: all 0.2s;
+ -o-transition: all 0.2s;
+ transition: all 0.2s;
+ box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
+ cursor: pointer;
+}
+
+/* line 758, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input:checked + label:after {
+ left: 19px;
+}
+
+/* line 761, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-switch input:checked + label:before {
+ background: #4cd3e3;
+}
+
+/* line 769, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-checkbox {
+ width: 16px;
+ height: 16px;
+ border-radius: 3px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 776, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-checkbox input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 785, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-checkbox input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 3px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 798, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-checkbox input:checked + label {
+ background: url(../img/elements/primary-check.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 806, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-checkbox {
+ width: 16px;
+ height: 16px;
+ border-radius: 3px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 813, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-checkbox input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 822, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-checkbox input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 3px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 835, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-checkbox input:checked + label {
+ background: url(../img/elements/success-check.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 843, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-checkbox {
+ width: 16px;
+ height: 16px;
+ border-radius: 3px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 850, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-checkbox input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 859, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-checkbox input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 3px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 871, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-checkbox input:disabled {
+ cursor: not-allowed;
+ z-index: 3;
+}
+
+/* line 876, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-checkbox input:checked + label {
+ background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 884, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-radio {
+ width: 16px;
+ height: 16px;
+ border-radius: 8px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 891, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-radio input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 900, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-radio input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 8px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 913, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.primary-radio input:checked + label {
+ background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 921, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-radio {
+ width: 16px;
+ height: 16px;
+ border-radius: 8px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 928, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-radio input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 937, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-radio input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 8px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 950, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.confirm-radio input:checked + label {
+ background: url(../img/elements/success-radio.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 958, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-radio {
+ width: 16px;
+ height: 16px;
+ border-radius: 8px;
+ background: #f9f9ff;
+ position: relative;
+ cursor: pointer;
+}
+
+/* line 965, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-radio input {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+/* line 974, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-radio input + label {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ border-radius: 8px;
+ cursor: pointer;
+ border: 1px solid #f1f1f1;
+}
+
+/* line 986, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-radio input:disabled {
+ cursor: not-allowed;
+ z-index: 3;
+}
+
+/* line 991, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.disabled-radio input:checked + label {
+ background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
+ border: none;
+}
+
+/* line 999, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select {
+ height: 40px;
+}
+
+/* line 1001, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select {
+ border: none;
+ border-radius: 0px;
+ height: 40px;
+ background: #f9f9ff;
+ padding-left: 20px;
+ padding-right: 40px;
+}
+
+/* line 1008, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select .list {
+ margin-top: 0;
+ border: none;
+ border-radius: 0px;
+ box-shadow: none;
+ width: 100%;
+ padding: 10px 0 10px 0px;
+}
+
+/* line 1015, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select .list .option {
+ font-weight: 300;
+ -webkit-transition: all 0.3s ease 0s;
+ -moz-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ line-height: 28px;
+ min-height: 28px;
+ font-size: 12px;
+ padding-left: 20px;
+}
+
+/* line 1022, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select .list .option.selected {
+ color: #222222;
+ background: transparent;
+}
+
+/* line 1026, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select .list .option:hover {
+ color: #222222;
+ background: transparent;
+}
+
+/* line 1033, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .current {
+ margin-right: 50px;
+ font-weight: 300;
+}
+
+/* line 1037, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.default-select .nice-select::after {
+ right: 20px;
+}
+
+/* line 1042, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select {
+ height: 40px;
+ width: 100%;
+}
+
+/* line 1045, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select {
+ border: none;
+ border-radius: 0px;
+ height: 40px;
+ background: #f9f9ff;
+ padding-left: 45px;
+ padding-right: 40px;
+ width: 100%;
+}
+
+/* line 1053, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select .list {
+ margin-top: 0;
+ border: none;
+ border-radius: 0px;
+ box-shadow: none;
+ width: 100%;
+ padding: 10px 0 10px 0px;
+}
+
+/* line 1060, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select .list .option {
+ font-weight: 300;
+ -webkit-transition: all 0.3s ease 0s;
+ -moz-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ line-height: 28px;
+ min-height: 28px;
+ font-size: 12px;
+ padding-left: 45px;
+}
+
+/* line 1067, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select .list .option.selected {
+ color: #222222;
+ background: transparent;
+}
+
+/* line 1071, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select .list .option:hover {
+ color: #222222;
+ background: transparent;
+}
+
+/* line 1078, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .current {
+ margin-right: 50px;
+ font-weight: 300;
+}
+
+/* line 1082, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.form-select .nice-select::after {
+ right: 20px;
+}
+
+/* line 1086, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.mt-10 {
+ margin-top: 10px;
+}
+
+/* line 1089, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.section-top-border {
+ padding: 50px 0;
+ border-top: 1px dotted #eee;
+}
+
+/* line 1093, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.mb-30 {
+ margin-bottom: 30px;
+}
+
+/* line 1096, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.mt-30 {
+ margin-top: 30px;
+}
+
+/* line 1099, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_elements.scss */
+.switch-wrap {
+ margin-bottom: 10px;
+}
+
+/* Start Blog Area css
+============================================================================================ */
+/* line 5, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.latest-blog-area .area-heading {
+ margin-bottom: 70px;
+}
+
+/* line 10, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_area a {
+ color: #666666 !important;
+ text-decoration: none;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 14, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_area a:hover, .blog_area a :hover {
+ background: -webkit-linear-gradient(131deg, #eb592d 0%, #eb592d 99%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ text-decoration: none;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog {
+ overflow: hidden;
+ margin-bottom: 30px;
+}
+
+/* line 28, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog:hover {
+ box-shadow: 0px 10px 20px 0px rgba(42, 34, 123, 0.1);
+}
+
+/* line 32, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .thumb {
+ overflow: hidden;
+ position: relative;
+}
+
+/* line 36, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .thumb:after {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ background: #000;
+ opacity: 0;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 49, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog h4 {
+ border-bottom: 1px solid #dfdfdf;
+ padding-bottom: 34px;
+ margin-bottom: 25px;
+}
+
+/* line 56, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog a {
+ font-size: 20px;
+ font-weight: 600;
+}
+
+/* line 66, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .date {
+ color: #666666;
+ text-align: left;
+ display: inline-block;
+ font-size: 13px;
+ font-weight: 300;
+}
+
+/* line 74, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .tag {
+ text-align: left;
+ display: inline-block;
+ float: left;
+ font-size: 13px;
+ font-weight: 300;
+ margin-right: 22px;
+ position: relative;
+}
+
+/* line 84, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .tag:after {
+ content: '';
+ position: absolute;
+ width: 1px;
+ height: 10px;
+ background: #acacac;
+ right: -12px;
+ top: 7px;
+}
+
+@media (max-width: 1199px) {
+ /* line 74, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog .tag {
+ margin-right: 8px;
+ }
+ /* line 98, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog .tag:after {
+ display: none;
+ }
+}
+
+/* line 104, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .likes {
+ margin-right: 16px;
+}
+
+@media (max-width: 800px) {
+ /* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 112, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .single-blog-content {
+ padding: 30px;
+}
+
+/* line 116, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .single-blog-content .meta-bottom p {
+ font-size: 13px;
+ font-weight: 300;
+}
+
+/* line 121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog .single-blog-content .meta-bottom i {
+ color: #fdcb9e;
+ font-size: 13px;
+ margin-right: 7px;
+}
+
+@media (max-width: 1199px) {
+ /* line 112, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog .single-blog-content {
+ padding: 15px;
+ }
+}
+
+/* line 135, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-blog:hover .thumb:after {
+ opacity: .7;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+@media (max-width: 1199px) {
+ /* line 143, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog h4 {
+ transition: all 300ms linear 0s;
+ border-bottom: 1px solid #dfdfdf;
+ padding-bottom: 14px;
+ margin-bottom: 12px;
+ }
+ /* line 149, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-blog h4 a {
+ font-size: 18px;
+ }
+}
+
+/* line 157, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog {
+ position: relative;
+}
+
+/* line 160, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog .single-blog-content {
+ position: absolute;
+ left: 35px;
+ bottom: 0;
+ opacity: 0;
+ visibility: hidden;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+@media (min-width: 992px) {
+ /* line 160, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .full_image.single-blog .single-blog-content {
+ bottom: 100px;
+ }
+}
+
+/* line 179, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog h4 {
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+ border-bottom: none;
+ padding-bottom: 5px;
+}
+
+/* line 185, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog a {
+ font-size: 20px;
+ font-weight: 600;
+}
+
+/* line 195, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog .date {
+ color: #fff;
+}
+
+/* line 200, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.full_image.single-blog:hover .single-blog-content {
+ opacity: 1;
+ visibility: visible;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* End Blog Area css
+============================================================================================ */
+/* Latest Blog Area css
+============================================================================================ */
+/* line 224, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.l_blog_item .l_blog_text .date {
+ margin-top: 24px;
+ margin-bottom: 15px;
+}
+
+/* line 228, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.l_blog_item .l_blog_text .date a {
+ font-size: 12px;
+}
+
+/* line 234, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.l_blog_item .l_blog_text h4 {
+ font-size: 18px;
+ border-bottom: 1px solid #eeeeee;
+ margin-bottom: 0px;
+ padding-bottom: 20px;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 247, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.l_blog_item .l_blog_text p {
+ margin-bottom: 0px;
+ padding-top: 20px;
+}
+
+/* End Latest Blog Area css
+============================================================================================ */
+/* Causes Area css
+============================================================================================ */
+/* line 263, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_slider .owl-dots {
+ text-align: center;
+ margin-top: 80px;
+}
+
+/* line 267, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_slider .owl-dots .owl-dot {
+ height: 14px;
+ width: 14px;
+ background: #eeeeee;
+ display: inline-block;
+ margin-right: 7px;
+}
+
+/* line 274, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_slider .owl-dots .owl-dot:last-child {
+ margin-right: 0px;
+}
+
+/* line 285, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item {
+ background: #fff;
+}
+
+/* line 288, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_img {
+ position: relative;
+}
+
+/* line 291, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_img .c_parcent {
+ position: absolute;
+ bottom: 0px;
+ width: 100%;
+ left: 0px;
+ height: 3px;
+ background: rgba(255, 255, 255, 0.5);
+}
+
+/* line 299, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_img .c_parcent span {
+ width: 70%;
+ height: 3px;
+ position: absolute;
+ left: 0px;
+ bottom: 0px;
+}
+
+/* line 307, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_img .c_parcent span:before {
+ content: "75%";
+ position: absolute;
+ right: -10px;
+ bottom: 0px;
+ color: #fff;
+ padding: 0px 5px;
+}
+
+/* line 320, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_text {
+ padding: 30px 35px 40px 30px;
+}
+
+/* line 323, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_text h4 {
+ font-size: 18px;
+ font-weight: 600;
+ margin-bottom: 15px;
+ cursor: pointer;
+}
+
+/* line 336, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_text p {
+ font-size: 14px;
+ line-height: 24px;
+ font-weight: 300;
+ margin-bottom: 0px;
+}
+
+/* line 346, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_bottom a {
+ width: 50%;
+ border: 1px solid;
+ text-align: center;
+ float: left;
+ line-height: 50px;
+ color: #fff;
+ font-size: 14px;
+ font-weight: 500;
+}
+
+/* line 358, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.causes_item .causes_bottom a + a {
+ border-color: #eeeeee;
+ background: #fff;
+ font-size: 14px;
+}
+
+/* End Causes Area css
+============================================================================================ */
+/*================= latest_blog_area css =============*/
+/* line 374, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.latest_blog_area {
+ background: #f9f9ff;
+}
+
+/* line 378, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post {
+ margin-bottom: 30px;
+}
+
+/* line 381, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post .thumb {
+ overflow: hidden;
+}
+
+/* line 384, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post .thumb img {
+ transition: all 0.7s linear;
+}
+
+/* line 389, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post .details {
+ padding-top: 30px;
+}
+
+/* line 392, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post .details .sec_h4 {
+ line-height: 24px;
+ padding: 10px 0px 13px;
+ transition: all 0.3s linear;
+}
+
+/* line 403, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post .date {
+ font-size: 14px;
+ line-height: 24px;
+ font-weight: 400;
+}
+
+/* line 410, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-recent-blog-post:hover img {
+ transform: scale(1.23) rotate(10deg);
+}
+
+/* line 417, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.tags .tag_btn {
+ font-size: 12px;
+ font-weight: 500;
+ line-height: 20px;
+ border: 1px solid #eeeeee;
+ display: inline-block;
+ padding: 1px 18px;
+ text-align: center;
+}
+
+/* line 431, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.tags .tag_btn + .tag_btn {
+ margin-left: 2px;
+}
+
+/*========= blog_categorie_area css ===========*/
+/* line 438, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_categorie_area {
+ padding-top: 30px;
+ padding-bottom: 30px;
+}
+
+@media (min-width: 900px) {
+ /* line 438, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_categorie_area {
+ padding-top: 80px;
+ padding-bottom: 80px;
+ }
+}
+
+@media (min-width: 1100px) {
+ /* line 438, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_categorie_area {
+ padding-top: 120px;
+ padding-bottom: 120px;
+ }
+}
+
+/* line 454, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post {
+ position: relative;
+ text-align: center;
+ cursor: pointer;
+}
+
+/* line 459, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post img {
+ max-width: 100%;
+}
+
+/* line 463, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post .categories_details {
+ position: absolute;
+ top: 20px;
+ left: 20px;
+ right: 20px;
+ bottom: 20px;
+ background: rgba(34, 34, 34, 0.75);
+ color: #fff;
+ transition: all 0.3s linear;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+/* line 476, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post .categories_details h5 {
+ margin-bottom: 0px;
+ font-size: 18px;
+ line-height: 26px;
+ text-transform: uppercase;
+ color: #fff;
+ position: relative;
+}
+
+/* line 494, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post .categories_details p {
+ font-weight: 300;
+ font-size: 14px;
+ line-height: 26px;
+ margin-bottom: 0px;
+}
+
+/* line 501, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post .categories_details .border_line {
+ margin: 10px 0px;
+ background: #fff;
+ width: 100%;
+ height: 1px;
+}
+
+/* line 510, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.categories_post:hover .categories_details {
+ background: rgba(222, 99, 32, 0.85);
+}
+
+/*============ blog_left_sidebar css ==============*/
+/* line 525, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_item {
+ margin-bottom: 50px;
+}
+
+/* line 529, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_details {
+ padding: 30px 0 20px 10px;
+ box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3);
+}
+
+@media (min-width: 768px) {
+ /* line 529, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_details {
+ padding: 60px 30px 35px 35px;
+ }
+}
+
+/* line 537, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_details p {
+ margin-bottom: 30px;
+}
+
+/* line 541, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_details a {
+ color: #ff8b23;
+}
+
+/* line 544, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_details a:hover {
+ color: #eb592d;
+}
+
+/* line 549, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_details h2 {
+ font-size: 18px;
+ font-weight: 600;
+ margin-bottom: 8px;
+}
+
+@media (min-width: 768px) {
+ /* line 549, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_details h2 {
+ font-size: 24px;
+ margin-bottom: 15px;
+ }
+}
+
+/* line 563, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link li {
+ float: left;
+ font-size: 14px;
+}
+
+/* line 567, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link li a {
+ color: #999999;
+}
+
+/* line 571, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link li i,
+.blog-info-link li span {
+ font-size: 13px;
+ margin-right: 5px;
+}
+
+/* line 577, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link li::after {
+ content: "|";
+ padding-left: 10px;
+ padding-right: 10px;
+}
+
+/* line 583, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link li:last-child::after {
+ display: none;
+}
+
+/* line 588, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-info-link::after {
+ content: "";
+ display: block;
+ clear: both;
+ display: table;
+}
+
+/* line 596, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_item_img {
+ position: relative;
+}
+
+/* line 599, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_item_img .blog_item_date {
+ position: absolute;
+ bottom: -10px;
+ left: 10px;
+ display: block;
+ color: #fff;
+ background-color: #eb592d;
+ padding: 8px 15px;
+ border-radius: 5px;
+}
+
+@media (min-width: 768px) {
+ /* line 599, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_item_img .blog_item_date {
+ bottom: -20px;
+ left: 40px;
+ padding: 13px 30px;
+ }
+}
+
+/* line 615, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_item_img .blog_item_date h3 {
+ font-size: 22px;
+ font-weight: 600;
+ color: #fff;
+ margin-bottom: 0;
+ line-height: 1.2;
+}
+
+@media (min-width: 768px) {
+ /* line 615, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_item_img .blog_item_date h3 {
+ font-size: 30px;
+ }
+}
+
+/* line 627, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_item_img .blog_item_date p {
+ font-size: 18px;
+ margin-bottom: 0;
+ color: #fff;
+}
+
+@media (min-width: 768px) {
+ /* line 627, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .blog_item_img .blog_item_date p {
+ font-size: 18px;
+ }
+}
+
+/* line 647, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .widget_title {
+ font-size: 20px;
+ margin-bottom: 40px;
+}
+
+/* line 652, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .widget_title::after {
+ content: "";
+ display: block;
+ padding-top: 15px;
+ border-bottom: 1px solid #f0e9ff;
+}
+
+/* line 660, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .single_sidebar_widget {
+ background: #fbf9ff;
+ padding: 30px;
+ margin-bottom: 30px;
+}
+
+/* line 664, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .single_sidebar_widget .btn_1 {
+ margin-top: 0px;
+}
+
+/* line 672, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .search_widget .form-control {
+ height: 50px;
+ border-color: #f0e9ff;
+ font-size: 13px;
+ color: #999999;
+ padding-left: 20px;
+ border-radius: 0;
+ border-right: 0;
+}
+
+/* line 681, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .search_widget .form-control::placeholder {
+ color: #999999;
+}
+
+/* line 685, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .search_widget .form-control:focus {
+ border-color: #f0e9ff;
+ outline: 0;
+ box-shadow: none;
+}
+
+/* line 694, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .search_widget .input-group button {
+ background: #fff;
+ border-left: 0;
+ border: 1px solid #f0e9ff;
+ padding: 4px 15px;
+ border-left: 0;
+}
+
+/* line 701, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .search_widget .input-group button i,
+.blog_right_sidebar .search_widget .input-group button span {
+ font-size: 14px;
+ color: #999999;
+}
+
+/* line 713, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .newsletter_widget .form-control {
+ height: 50px;
+ border-color: #f0e9ff;
+ font-size: 13px;
+ color: #999999;
+ padding-left: 20px;
+ border-radius: 0;
+}
+
+/* line 722, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .newsletter_widget .form-control::placeholder {
+ color: #999999;
+}
+
+/* line 726, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .newsletter_widget .form-control:focus {
+ border-color: #f0e9ff;
+ outline: 0;
+ box-shadow: none;
+}
+
+/* line 735, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .newsletter_widget .input-group button {
+ background: #fff;
+ border-left: 0;
+ border: 1px solid #f0e9ff;
+ padding: 4px 15px;
+ border-left: 0;
+}
+
+/* line 742, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .newsletter_widget .input-group button i,
+.blog_right_sidebar .newsletter_widget .input-group button span {
+ font-size: 14px;
+ color: #999999;
+}
+
+/* line 755, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .post_category_widget .cat-list li {
+ border-bottom: 1px solid #f0e9ff;
+ transition: all 0.3s ease 0s;
+ padding-bottom: 12px;
+}
+
+/* line 760, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .post_category_widget .cat-list li:last-child {
+ border-bottom: 0;
+}
+
+/* line 764, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .post_category_widget .cat-list li a {
+ font-size: 14px;
+ line-height: 20px;
+ color: #888888;
+}
+
+/* line 769, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .post_category_widget .cat-list li a p {
+ margin-bottom: 0px;
+}
+
+/* line 774, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .post_category_widget .cat-list li + li {
+ padding-top: 15px;
+}
+
+/* line 791, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .popular_post_widget .post_item .media-body {
+ justify-content: center;
+ align-self: center;
+ padding-left: 20px;
+}
+
+/* line 796, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
+ font-size: 16px;
+ line-height: 20px;
+ margin-bottom: 6px;
+ transition: all 0.3s linear;
+}
+
+/* line 807, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover {
+ color: #fff;
+}
+
+/* line 813, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .popular_post_widget .post_item .media-body p {
+ font-size: 14px;
+ line-height: 21px;
+ margin-bottom: 0px;
+}
+
+/* line 820, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .popular_post_widget .post_item + .post_item {
+ margin-top: 20px;
+}
+
+/* line 828, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .tag_cloud_widget ul li {
+ display: inline-block;
+}
+
+/* line 831, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .tag_cloud_widget ul li a {
+ display: inline-block;
+ border: 1px solid #eeeeee;
+ background: #fff;
+ padding: 4px 20px;
+ margin-bottom: 8px;
+ margin-right: 3px;
+ transition: all 0.3s ease 0s;
+ color: #888888;
+ font-size: 13px;
+}
+
+/* line 842, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .tag_cloud_widget ul li a:hover {
+ background: #eb592d;
+ color: #fff !important;
+ -webkit-text-fill-color: #fff;
+ text-decoration: none;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 857, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .instagram_feeds .instagram_row {
+ display: flex;
+ margin-right: -6px;
+ margin-left: -6px;
+}
+
+/* line 863, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .instagram_feeds .instagram_row li {
+ width: 33.33%;
+ float: left;
+ padding-right: 6px;
+ padding-left: 6px;
+ margin-bottom: 15px;
+}
+
+/* line 963, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog_right_sidebar .br {
+ width: 100%;
+ height: 1px;
+ background: #eeeeee;
+ margin: 30px 0px;
+}
+
+/* line 984, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-pagination {
+ margin-top: 80px;
+}
+
+/* line 988, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-pagination .page-link {
+ font-size: 14px;
+ position: relative;
+ display: block;
+ padding: 0;
+ text-align: center;
+ margin-left: -1px;
+ line-height: 45px;
+ width: 45px;
+ height: 45px;
+ border-radius: 0 !important;
+ color: #8a8a8a;
+ border: 1px solid #f0e9ff;
+ margin-right: 10px;
+}
+
+/* line 1005, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-pagination .page-link i,
+.blog-pagination .page-link span {
+ font-size: 13px;
+}
+
+/* line 1017, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-pagination .page-item.active .page-link {
+ background-color: #fbf9ff;
+ border-color: #f0e9ff;
+ color: #888888;
+}
+
+/* line 1024, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.blog-pagination .page-item:last-child .page-link {
+ margin-right: 0;
+}
+
+/*============ Start Blog Single Styles =============*/
+/* line 1049, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog_details {
+ box-shadow: none;
+ padding: 0;
+}
+
+/* line 1054, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .social-links {
+ padding-top: 10px;
+}
+
+/* line 1057, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .social-links li {
+ display: inline-block;
+ margin-bottom: 10px;
+}
+
+/* line 1061, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .social-links li a {
+ color: #cccccc;
+ padding: 7px;
+ font-size: 14px;
+ transition: all 0.2s linear;
+}
+
+/* line 1074, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog_details {
+ padding-top: 26px;
+}
+
+/* line 1077, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog_details p {
+ margin-bottom: 20px;
+ font-size: 15px;
+}
+
+/* line 1087, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .quote-wrapper {
+ background: rgba(130, 139, 178, 0.1);
+ padding: 15px;
+ line-height: 1.733;
+ color: #888888;
+ font-style: italic;
+ margin-top: 25px;
+ margin-bottom: 25px;
+}
+
+@media (min-width: 768px) {
+ /* line 1087, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .quote-wrapper {
+ padding: 30px;
+ }
+}
+
+/* line 1101, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .quotes {
+ background: #fff;
+ padding: 15px 15px 15px 20px;
+ border-left: 2px solid;
+}
+
+@media (min-width: 768px) {
+ /* line 1101, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .quotes {
+ padding: 25px 25px 25px 30px;
+ }
+}
+
+/* line 1111, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .arrow {
+ position: absolute;
+}
+
+/* line 1114, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .arrow .lnr {
+ font-size: 20px;
+ font-weight: 600;
+}
+
+/* line 1121, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .thumb .overlay-bg {
+ background: rgba(0, 0, 0, 0.8);
+}
+
+/* line 1126, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top {
+ padding-top: 15px;
+ border-top: 1px solid #f0e9ff;
+}
+
+/* line 1130, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top p {
+ margin-bottom: 0;
+}
+
+/* line 1134, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .like-info {
+ font-size: 14px;
+}
+
+/* line 1137, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .like-info i,
+.single-post-area .navigation-top .like-info span {
+ font-size: 16px;
+ margin-right: 5px;
+}
+
+/* line 1144, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .comment-count {
+ font-size: 14px;
+}
+
+/* line 1147, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .comment-count i,
+.single-post-area .navigation-top .comment-count span {
+ font-size: 16px;
+ margin-right: 5px;
+}
+
+/* line 1156, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .social-icons li {
+ display: inline-block;
+ margin-right: 15px;
+}
+
+/* line 1160, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .social-icons li:last-child {
+ margin: 0;
+}
+
+/* line 1164, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-top .social-icons li i,
+.single-post-area .navigation-top .social-icons li span {
+ font-size: 14px;
+ color: #999999;
+}
+
+/* line 1182, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author {
+ padding: 40px 30px;
+ background: #fbf9ff;
+ margin-top: 50px;
+}
+
+@media (max-width: 600px) {
+ /* line 1182, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .blog-author {
+ padding: 20px 8px;
+ }
+}
+
+/* line 1191, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author img {
+ width: 90px;
+ height: 90px;
+ border-radius: 50%;
+ margin-right: 30px;
+}
+
+@media (max-width: 600px) {
+ /* line 1191, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .blog-author img {
+ margin-right: 15px;
+ width: 45px;
+ height: 45px;
+ }
+}
+
+/* line 1204, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author a {
+ display: inline-block;
+}
+
+/* line 1208, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author a:hover {
+ color: #eb592d;
+}
+
+/* line 1213, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author p {
+ margin-bottom: 0;
+ font-size: 15px;
+}
+
+/* line 1218, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .blog-author h4 {
+ font-size: 16px;
+}
+
+/* line 1225, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area {
+ border-bottom: 1px solid #eee;
+ padding-bottom: 30px;
+ margin-top: 55px;
+}
+
+/* line 1230, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area p {
+ margin-bottom: 0px;
+}
+
+/* line 1234, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area h4 {
+ font-size: 18px;
+ line-height: 25px;
+}
+
+/* line 1240, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left {
+ text-align: left;
+}
+
+/* line 1243, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left .thumb {
+ margin-right: 20px;
+ background: #000;
+}
+
+/* line 1247, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left .thumb img {
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 1252, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left .lnr {
+ margin-left: 20px;
+ opacity: 0;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 1259, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left:hover .lnr {
+ opacity: 1;
+}
+
+/* line 1264, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-left:hover .thumb img {
+ opacity: .5;
+}
+
+@media (max-width: 767px) {
+ /* line 1240, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .navigation-area .nav-left {
+ margin-bottom: 30px;
+ }
+}
+
+/* line 1275, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right {
+ text-align: right;
+}
+
+/* line 1278, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right .thumb {
+ margin-left: 20px;
+ background: #000;
+}
+
+/* line 1282, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right .thumb img {
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 1287, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right .lnr {
+ margin-right: 20px;
+ opacity: 0;
+ -webkit-transition: 0.5s;
+ transition: 0.5s;
+}
+
+/* line 1294, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right:hover .lnr {
+ opacity: 1;
+}
+
+/* line 1299, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.single-post-area .navigation-area .nav-right:hover .thumb img {
+ opacity: .5;
+}
+
+@media (max-width: 991px) {
+ /* line 1307, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .single-post-area .sidebar-widgets {
+ padding-bottom: 0px;
+ }
+}
+
+/* line 1314, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area {
+ background: transparent;
+ border-top: 1px solid #eee;
+ padding: 45px 0;
+ margin-top: 50px;
+}
+
+@media (max-width: 414px) {
+ /* line 1314, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comments-area {
+ padding: 50px 8px;
+ }
+}
+
+/* line 1325, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area h4 {
+ margin-bottom: 35px;
+ font-size: 18px;
+}
+
+/* line 1332, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area h5 {
+ font-size: 16px;
+ margin-bottom: 0px;
+}
+
+/* line 1341, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .comment-list {
+ padding-bottom: 48px;
+}
+
+/* line 1344, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .comment-list:last-child {
+ padding-bottom: 0px;
+}
+
+/* line 1348, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .comment-list.left-padding {
+ padding-left: 25px;
+}
+
+@media (max-width: 413px) {
+ /* line 1354, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comments-area .comment-list .single-comment h5 {
+ font-size: 12px;
+ }
+ /* line 1358, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comments-area .comment-list .single-comment .date {
+ font-size: 11px;
+ }
+ /* line 1362, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comments-area .comment-list .single-comment .comment {
+ font-size: 10px;
+ }
+}
+
+/* line 1369, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .thumb {
+ margin-right: 20px;
+}
+
+/* line 1372, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .thumb img {
+ width: 70px;
+ border-radius: 50%;
+}
+
+/* line 1378, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .date {
+ font-size: 14px;
+ color: #999999;
+ margin-bottom: 0;
+ margin-left: 20px;
+}
+
+/* line 1385, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .comment {
+ margin-bottom: 10px;
+ color: #777777;
+ font-size: 15px;
+}
+
+/* line 1391, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comments-area .btn-reply {
+ background-color: transparent;
+ color: #888888;
+ padding: 5px 18px;
+ font-size: 14px;
+ display: block;
+ font-weight: 400;
+}
+
+/* line 1408, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form {
+ border-top: 1px solid #eee;
+ padding-top: 45px;
+ margin-top: 50px;
+ margin-bottom: 20px;
+}
+
+/* line 1416, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .form-group {
+ margin-bottom: 30px;
+}
+
+/* line 1420, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form h4 {
+ margin-bottom: 40px;
+ font-size: 18px;
+ line-height: 22px;
+}
+
+/* line 1428, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .name {
+ padding-left: 0px;
+}
+
+@media (max-width: 767px) {
+ /* line 1428, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comment-form .name {
+ padding-right: 0px;
+ margin-bottom: 1rem;
+ }
+}
+
+/* line 1437, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .email {
+ padding-right: 0px;
+}
+
+@media (max-width: 991px) {
+ /* line 1437, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+ .comment-form .email {
+ padding-left: 0px;
+ }
+}
+
+/* line 1445, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .form-control {
+ border: 1px solid #f0e9ff;
+ border-radius: 5px;
+ height: 48px;
+ padding-left: 18px;
+ font-size: 13px;
+ background: transparent;
+}
+
+/* line 1453, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .form-control:focus {
+ outline: 0;
+ box-shadow: none;
+}
+
+/* line 1458, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .form-control::placeholder {
+ font-weight: 300;
+ color: #999999;
+}
+
+/* line 1463, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form .form-control::placeholder {
+ color: #777777;
+}
+
+/* line 1468, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form textarea {
+ padding-top: 18px;
+ border-radius: 12px;
+ height: 100% !important;
+}
+
+/* line 1474, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form ::-webkit-input-placeholder {
+ /* Chrome/Opera/Safari */
+ font-size: 13px;
+ color: #777;
+}
+
+/* line 1480, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form ::-moz-placeholder {
+ /* Firefox 19+ */
+ font-size: 13px;
+ color: #777;
+}
+
+/* line 1486, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form :-ms-input-placeholder {
+ /* IE 10+ */
+ font-size: 13px;
+ color: #777;
+}
+
+/* line 1492, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog.scss */
+.comment-form :-moz-placeholder {
+ /* Firefox 18- */
+ font-size: 13px;
+ color: #777;
+}
+
+/*============ End Blog Single Styles =============*/
+/**************** blog part css start ****************/
+/* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part {
+ margin-bottom: 140px;
+}
+
+@media (max-width: 576px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part {
+ margin-bottom: 0px;
+ padding: 0px 0px 70px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part {
+ margin-bottom: 0px;
+ padding: 0px 0px 70px;
+ }
+}
+
+@media only screen and (min-width: 768px) and (max-width: 991px) {
+ /* line 2, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part {
+ margin-bottom: 0px;
+ padding: 0px 0px 70px;
+ }
+}
+
+/* line 19, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .blog_right_sidebar .widget_title {
+ font-size: 20px;
+ margin-bottom: 40px;
+ font-style: inherit !important;
+}
+
+@media (max-width: 576px) {
+ /* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog {
+ margin-bottom: 140px;
+ margin-top: 20px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog {
+ margin-bottom: 140px;
+ margin-top: 20px;
+ }
+}
+
+@media only screen and (min-width: 768px) and (max-width: 991px) {
+ /* line 24, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog {
+ margin-bottom: 140px;
+ margin-top: 20px;
+ }
+}
+
+/* line 40, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card-img-top {
+ border-radius: 0px;
+}
+
+/* line 43, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card {
+ border: 0px solid transparent;
+ border-radius: 0px;
+ background-color: transparent;
+ position: relative;
+}
+
+/* line 48, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card .card-body {
+ padding: 25px 10px 29px 40px;
+ background-color: #fff;
+ position: absolute;
+ left: 20px;
+ bottom: -140px;
+ box-shadow: -7.552px 9.326px 20px 0px rgba(1, 84, 85, 0.1);
+ border-radius: 10px;
+}
+
+@media (max-width: 576px) {
+ /* line 48, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card .card-body {
+ padding: 15px;
+ left: 10px;
+ bottom: -140px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 48, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card .card-body {
+ padding: 15px;
+ left: 10px;
+ bottom: -140px;
+ }
+}
+
+@media only screen and (min-width: 992px) and (max-width: 1200px) {
+ /* line 48, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card .card-body {
+ padding: 20px;
+ }
+}
+
+/* line 72, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card .card-body a {
+ color: #eb592d;
+ text-transform: uppercase;
+ -webkit-transition: 0.8s;
+ transition: 0.8s;
+}
+
+/* line 76, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card .card-body a:hover {
+ background: -webkit-linear-gradient(131deg, #ff7e5f 0%, #feb47b 99%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+}
+
+/* line 83, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card .dot {
+ position: relative;
+ padding-left: 20px;
+}
+
+/* line 86, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card .dot:after {
+ position: absolute;
+ content: "";
+ width: 10px;
+ height: 10px;
+ top: 5px;
+ left: 0;
+ background-color: #eb592d;
+ border-radius: 50%;
+}
+
+/* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card span {
+ color: #8a8a8a;
+ margin-bottom: 10px;
+ display: inline-block;
+ margin-top: 10px;
+}
+
+@media (max-width: 576px) {
+ /* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card span {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card span {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ }
+}
+
+@media only screen and (min-width: 768px) and (max-width: 991px) {
+ /* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card span {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ }
+}
+
+@media only screen and (min-width: 992px) and (max-width: 1200px) {
+ /* line 97, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card span {
+ margin-bottom: 5px;
+ margin-top: 5px;
+ }
+}
+
+/* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card h5 {
+ font-weight: 600;
+ line-height: 1.5;
+ font-size: 20px;
+ -webkit-transition: 0.8s;
+ transition: 0.8s;
+ text-transform: capitalize;
+ margin-bottom: 22px;
+}
+
+@media (max-width: 576px) {
+ /* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card h5 {
+ margin-bottom: 10px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card h5 {
+ margin-bottom: 10px;
+ font-size: 16px;
+ }
+}
+
+@media only screen and (min-width: 768px) and (max-width: 991px) {
+ /* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card h5 {
+ margin-bottom: 10px;
+ }
+}
+
+@media only screen and (min-width: 992px) and (max-width: 1200px) {
+ /* line 119, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card h5 {
+ margin-bottom: 10px;
+ font-size: 18px;
+ }
+}
+
+/* line 140, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card h5:hover {
+ -webkit-transition: 0.8s;
+ transition: 0.8s;
+ background: -webkit-linear-gradient(131deg, #feb47b 0%, #ff7e5f 99%);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ -webkit-animation: 1s;
+}
+
+/* line 150, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card ul li {
+ display: inline-block;
+ color: #8a8a8a;
+ margin-right: 14px;
+}
+
+@media (max-width: 576px) {
+ /* line 150, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card ul li {
+ margin-right: 10px;
+ }
+}
+
+@media only screen and (min-width: 576px) and (max-width: 767px) {
+ /* line 150, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card ul li {
+ margin-right: 10px;
+ }
+}
+
+@media only screen and (min-width: 768px) and (max-width: 991px) {
+ /* line 150, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card ul li {
+ margin-right: 10px;
+ }
+}
+
+@media only screen and (min-width: 992px) and (max-width: 1200px) {
+ /* line 150, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+ .blog_part .single-home-blog .card ul li {
+ margin-right: 10px;
+ }
+}
+
+/* line 166, ../../Arafath/CL/january 2020/238. Barber/HTML/scss/_blog_part.scss */
+.blog_part .single-home-blog .card ul li span {
+ margin-right: 10px;
+ font-size: 12px;
+}
+
+/*# sourceMappingURL=style.css.map */ \ No newline at end of file
diff --git a/src/main/resources/static/css/style.map b/src/main/resources/static/css/style.map
new file mode 100644
index 0000000..5ffd53b
--- /dev/null
+++ b/src/main/resources/static/css/style.map
@@ -0,0 +1,58 @@
+{
+ "version": 3,
+ "file": "style.css",
+ "sources": [
+ "../scss/style.scss",
+ "../scss/_varriable.scss",
+ "../scss/_mixins.scss",
+ "../scss/_extend.scss",
+ "../scss/_responsive.scss",
+ "../scss/_reset.scss",
+ "../scss/_btn.scss",
+ "../scss/_section_title.scss",
+ "../scss/_slick-nav.scss",
+ "../scss/_header.scss",
+ "../scss/_slider.scss",
+ "../scss/_about.scss",
+ "../scss/_prising.scss",
+ "../scss/_service.scss",
+ "../scss/_team.scss",
+ "../scss/_make_apointment.scss",
+ "../scss/_testmonial.scss",
+ "../scss/_gallery.scss",
+ "../scss/_footer.scss",
+ "../scss/_bradcam.scss",
+ "../scss/_contact.scss",
+ "../scss/_elements.scss",
+ "../scss/_blog.scss",
+ "../scss/_blog_part.scss"
+ ],
+ "sourcesContent": [
+ "\r\n@import 'varriable.scss';\r\n@import 'mixins.scss';\r\n@import 'extend';\r\n@import 'responsive.scss';\r\n@import 'reset';\r\n@import 'btn';\r\n@import 'section_title';\r\n@import 'slick-nav.scss';\r\n\r\n\r\n\r\n// header\r\n@import 'header';\r\n\r\n// slider\r\n@import 'slider';\r\n\r\n// about\r\n@import 'about';\r\n\r\n// prising\r\n@import 'prising';\r\n\r\n// service\r\n@import 'service';\r\n\r\n// _team\r\n@import 'team';\r\n\r\n// make_apointment\r\n@import 'make_apointment';\r\n\r\n// _team\r\n@import '_testmonial';\r\n\r\n// _team\r\n@import '_gallery';\r\n\r\n// about\r\n@import 'footer';\r\n\r\n@import 'bradcam';\r\n\r\n// other pages default\r\n\r\n// contact\r\n@import 'contact';\r\n\r\n// elements\r\n@import 'elements.scss';\r\n\r\n// blog\r\n@import 'blog';\r\n\r\n\r\n// blog part\r\n@import 'blog_part';\r\n\r\n",
+ "@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Yeseva+One&display=swap');\r\n\r\n// fonts\r\n$font1: 'Yeseva One', cursive;\r\n$font2: 'Lato', sans-serif;\r\n// fonts-size\r\n\r\n$heading-color:#020c26;\r\n$gray-color: #bebebe;\r\n$gray-color-2: #bdbdbd;\r\n\r\n$theme-color: #020c26;\r\n$theme-color2: #222222;\r\n$theme-color3: #BC9321;\r\n$theme-color4: #EB592D;\r\n\r\n$gray-color3:#5c5c5c;\r\n$white_color:#fff;\r\n\r\n\r\n\r\n$font_1: #666666;\r\n$font_2: #646464;\r\n$font_3: #7f7f7f;\r\n$font_4: #8a8a8a;\r\n$font_5: #999999;\r\n$font_6: #666666;\r\n$font_7: #5c5c5c;\r\n$border_color: #fdcb9e;\r\n$footer_bg: #303030;\r\n$sidebar_bg: #fbf9ff;\r\n\r\n$medium_device : 'only screen and (min-width: 992px) and (max-width: 1200px)';\r\n$tab_device:'only screen and (min-width: 768px) and (max-width: 991px)';\r\n$large_mobile: 'only screen and (min-width: 576px) and (max-width: 767px)';\r\n$tab:'(max-width: 991px)';\r\n$small_mobile:'(max-width: 576px)';\r\n$xs_mobile:'(max-width: 420px)';\r\n$sm_mobile:'only screen and (min-width: 421px) and (max-width: 575px)';\r\n$big_screen:'only screen and (min-width: 1200px) and (max-width: 1440px)';\r\n$extra_big_screen: 'only screen and (min-width: 1200px) and (max-width: 3640px)';\r\n\r\n// ,,,,,,,,,,,\r\n$btn_bg: #eb592d;\r\n$btn_hover: #f5790b;\r\n$section_bg: #f7f7f7;\r\n$section_bg_1: #454545;\r\n$heading_color: #191d34;\r\n$heading_color2: #ff8b23;",
+ "// opacity\r\n@mixin opacity($opacity) {\r\n opacity: $opacity;\r\n $opacity-ie: $opacity * 100;\r\n filter: alpha(opacity=$opacity-ie); //IE8\r\n }\r\n// transition\r\n@mixin transition($args...) {\r\n -webkit-transition: $args;\r\n -moz-transition: $args;\r\n -ms-transition: $args;\r\n -o-transition: $args;\r\n transition: $args;\r\n}// transition\r\n@mixin border-radius($man) {\r\n -webkit-border-radius: $man;\r\n -moz-border-radius: $man;\r\n border-radius: $man;\r\n}\r\n\r\n\r\n// Flexbox display\r\n@mixin flexbox() {\r\n display: -webkit-box;\r\n display: -moz-box;\r\n display: -ms-flexbox;\r\n display: -webkit-flex;\r\n display: flex;\r\n}\r\n\r\n// justify-content\r\n@mixin justify-content($justify) {\r\n -webkit-justify-content: $justify;\r\n -moz-justify-content: $justify;\r\n -ms-justify-content: $justify;\r\n justify-content: $justify;\r\n -ms-flex-pack: $justify;\r\n}\r\n\r\n// align-content\r\n@mixin align-content($align) {\r\n -webkit-align-content: $align;\r\n -moz-align-content: $align;\r\n -ms-align-content: $align;\r\n align-content: $align;\r\n}\r\n\r\n// Cross-axis Alignment\r\n@mixin align-items($align) {\r\n -webkit-align-items: $align;\r\n -moz-align-items: $align;\r\n -ms-align-items: $align;\r\n align-items: $align;\r\n}\r\n\r\n\r\n// transform\r\n// Browser Prefixes\r\n@mixin transform($transforms) {\r\n\t-webkit-transform: $transforms;\r\n\t-moz-transform: $transforms;\r\n\t-ms-transform: $transforms;\r\n\ttransform: $transforms;\r\n}\r\n// Translate\r\n@mixin translate ($x, $y) {\r\n\t@include transform(translate($x, $y));\r\n}\r\n// TranslateY\r\n@mixin translateY ($y) {\r\n @include transform(translateY($y));\r\n }\r\n// TranslateY\r\n@mixin translateX ($x) {\r\n @include transform(translateX($x));\r\n }\r\n\r\n\r\n// Box shadows\r\n@mixin box-shadow($shadow...) {\r\n -webkit-box-shadow: $shadow;\r\n -moz-box-shadow: $shadow; \r\n box-shadow: $shadow;\r\n}\r\n\r\n\r\n\r\n@mixin background($imgpath,$position: center,$size: cover,$repeat: no-repeat) {\r\n background: {\r\n image: url($imgpath);\r\n position: $position;\r\n repeat: $repeat;\r\n size: $size;\r\n }\r\n}\r\n@mixin transform_time($total_time) {\r\n -webkit-transition: $total_time;\r\n transition: $total_time;\r\n}\r\n@mixin placeholder {\r\n&.placeholder {\r\n @content;\r\n}\r\n&:-moz-placeholder {\r\n @content;\r\n}\r\n&::-moz-placeholder {\r\n @content;\r\n}\r\n&::-webkit-input-placeholder {\r\n @content;\r\n}\r\n}\r\n@mixin transition($args: all 0.6s ease 0s) {\r\n-webkit-transition: $args;\r\n-moz-transition: $args;\r\n-o-transition: $args;\r\ntransition: $args;\r\n}\r\n\r\n@mixin keyframes ($animation-name) {\r\n@-webkit-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-moz-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-o-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@keyframes #{$animation-name} {\r\n @content;\r\n}\r\n}",
+ ".flex-center-start{\r\n display: -webkit-box;\r\ndisplay: -ms-flexbox;\r\ndisplay: flex;\r\n-webkit-box-align: center;\r\n -ms-flex-align: center;\r\n align-items: center;\r\n-webkit-box-pack: start;\r\n -ms-flex-pack: start;\r\n justify-content: start;\r\n}\r\n\r\n%overlay{\r\n\tbackground-image: -moz-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n\tbackground-image: -webkit-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n\tbackground-image: -ms-linear-gradient( 170deg, rgba(34,34,34,0) 0%, rgb(0,0,0) 100%);\r\n }\r\n\r\n ",
+ "/* Normal desktop :1200px. */\r\n$large_device:'(min-width: 1200px) and (max-width: 1500px)';\r\n\r\n/* Normal desktop :992px. */\r\n$mid_device:'(min-width: 992px) and (max-width: 1200px)';\r\n\r\n/* Tablet desktop :768px. */\r\n$tablet_device:'(min-width: 768px) and (max-width: 991px)';\r\n\r\n/* small mobile :320px. */\r\n$mobile_device:'(max-width: 767px)';\r\n\r\n/* Large Mobile :480px. */\r\n$large_mobile:'only screen and (min-width: 480px) and (max-width: 767px)';\r\n\r\n",
+ "@import 'mixins.scss';\r\n@import 'varriable';\r\n/* 1. Theme default css */\r\nbody {\r\n\tfont-family: $font2;\r\n\tfont-weight: normal;\r\n font-style: normal;\r\n \r\n}\r\n\r\n.img {\r\n\tmax-width: 100%;\r\n\t@include transition(.3s);\r\n}\r\na,\r\n.button {\r\n@include transition(.3s);\r\n}\r\na:focus,\r\n.button:focus,button:focus {\r\n\ttext-decoration: none;\r\n\toutline: none;\r\n}\r\na:focus{\r\n\ttext-decoration: none;\r\n}\r\na:focus,\r\na:hover,\r\n.portfolio-cat a:hover,\r\n.footer -menu li a:hover {\r\n\ttext-decoration: none;\r\n}\r\na,\r\nbutton {\r\n\tcolor: #1F1F1F;\r\n\toutline: medium none;\r\n}\r\nh1,h2,h3,h4,h5{\r\n\tfont-family: $font1;\r\n\tcolor: #1F1F1F;\r\n}\r\nh1 a,\r\nh2 a,\r\nh3 a,\r\nh4 a,\r\nh5 a,\r\nh6 a {\r\n\tcolor: inherit;\r\n}\r\n\r\nul {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\nli {\r\n\tlist-style: none\r\n}\r\np {\r\n\tfont-size: 16px;\r\n\tfont-weight:300;\r\n\tline-height: 28px;\r\n\tcolor: #727272;\r\n\tmargin-bottom: 13px;\r\n\tfont-family: $font2;\r\n}\r\n\r\nlabel {\r\n\tcolor: #7e7e7e;\r\n\tcursor: pointer;\r\n\tfont-size: 14px;\r\n\tfont-weight: 400;\r\n}\r\n*::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n*::-webkit-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*:-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n\r\nh3{\r\n\tfont-size: 24px;\r\n}\r\n\r\n.mb-65{\r\n\tmargin-bottom: 67px;\r\n}\r\n// default-bg-color\r\n.black-bg{\r\n\tbackground: #020c26 !important;\r\n}\r\n\r\n.white-bg{\r\n\tbackground: #ffffff;\r\n}\r\n.gray-bg{\r\n\tbackground: #f5f5f5;\r\n}\r\n\r\n// background-image\r\n.bg-img-1{\r\n background-image: url(../img/slider/slider-img-1.jpg);\r\n}\r\n.bg-img-2{\r\n background-image: url(../img/background-img/bg-img-2.jpg);\r\n}\r\n.cta-bg-1{\r\n background-image: url(../img/background-img/bg-img-3.jpg);\r\n\r\n}\r\n\r\n.overlay{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\t@extend %overlay;\r\n}\r\n\r\n.overlay2{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay2::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #2E2200;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: 0.5;\r\n}\r\n\r\n.section-padding{\r\n\tpadding-top: 120px;\r\n\tpadding-bottom: 120px;\r\n}\r\n.pt-120{\r\n\tpadding-top: 120px;\r\n}\r\n\r\n/* button style */\r\n.owl-carousel {\r\n\t.owl-nav div {\r\n\t\tbackground: transparent;\r\n\t\theight: 54px;\r\n\t\tleft: 0px;\r\n\t\tline-height: 54px;\r\n\t\t// opacity: 0;\r\n\t\tposition: absolute;\r\n\t\ttext-align: center;\r\n\t\ttop: 50%;\r\n\t\t-webkit-transform: translateY(-50%);\r\n\t\t\t-ms-transform: translateY(-50%);\r\n\t\t\t\ttransform: translateY(-50%);\r\n\t\t-webkit-transition: all 0.3s ease 0s;\r\n\t\t-o-transition: all 0.3s ease 0s;\r\n\t\ttransition: all 0.3s ease 0s;\r\n\t\t// visibility: hidden;\r\n\t\twidth: 54px;\r\n\t\tfont-size: 25px;\r\n\t\tcolor: #fff;\r\n\t\tbackground-color: rgba(255, 255, 255,255);\r\n\t\tborder-radius: 50%;\r\n\t\tleft: 50px;\r\n\t\tfont-size: 18px;\r\n\t\tline-height: 54px;\r\n\t\tleft: -26px;\r\n\t\tfont-size: 18px;\r\n\t\tline-height: 54px;\r\n\t\tcolor: #000;\r\n\t}\r\n\t.owl-nav{\r\n\t\tdiv{\r\n\t\t\t&.owl-next{\r\n\t\t\t\t// left: 86px;\r\n\t\t\t\t// right: auto;\r\n\t\t\t\tleft: auto;\r\n\t\t\t\tright: -30px;\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 0;\r\n\t\t\t\t\ttop: 1px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t&.owl-prev{\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 1px;\r\n\t\t\t\t\ttop: 0px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t&:hover{\r\n\t\t.owl-nav{\r\n\t\t\tdiv{\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tvisibility: visible;\r\n\t\t\t\t&:hover{\r\n\t\t\t\t\tcolor: #fff;\r\n\t\t\t\t\tbackground: $theme-color4;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n.mb-20px{\r\n\tmargin-bottom: 20px;\r\n}\r\n.mb-90{\r\n\tmargin-bottom: 90px;\r\n\t@media #{$mobile_device}{\r\n\t\tmargin-bottom: 30px;\r\n\t}\r\n\t@media #{$tablet_device}{\r\n\t\tmargin-bottom: 45px;\r\n\t}\r\n}\r\n\r\n \r\n\r\n ",
+ ".boxed-btn {\r\n\tbackground: #fff;\r\n\tcolor: $theme-color4;\r\n\tdisplay: inline-block;\r\n\tpadding: 18px 44px;\r\n\tfont-family: $font2;\r\n\tfont-size: 14px;\r\n font-weight: 400;\r\n border: 0;\r\n border: 1px solid $theme-color4;\r\n letter-spacing: 3px;\r\n // width: 180px;\r\n text-align: center;\r\n color: $theme-color4 !important;\r\n text-transform: uppercase;\r\n cursor: pointer;\r\n &:hover{\r\n background: $theme-color4;\r\n color: #fff !important;\r\n border: 1px solid $theme-color4;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n &.large-width{\r\n width: 220px;\r\n }\r\n}\r\n.boxed-btn3 {\r\n background: $btn_bg;\r\n font-size: 16px;\r\n font-weight: 400;\r\n border: 1px solid transparent ;\r\n color: #fff;\r\n padding: 19px 43px 23px 43px;\r\n font-family: $font2;\r\n display: inline-block;\r\n line-height: 1;\r\n &:hover{\r\n background: transparent;\r\n color: $btn_bg;\r\n border: 1px solid $btn_bg;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n}\r\n.boxed-btn2 {\r\n\tbackground: transparent;\r\n\tcolor: #fff;\r\n\tdisplay: inline-block;\r\n\tpadding: 18px 24px;\r\n\tfont-family: $font2;\r\n\tfont-size: 14px;\r\n font-weight: 400;\r\n border: 0;\r\n border: 1px solid #fff;\r\n letter-spacing: 2px;\r\n text-transform: uppercase;\r\n &:hover{\r\n background: #fff;\r\n color: #131313 !important;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n}\r\n.line-button{\r\n color: #919191;\r\n font-size: 16px;\r\n font-weight: 400;\r\n display: inline-block;\r\n position: relative;\r\n padding-right: 5px;\r\n padding-bottom: 2px;\r\n &::before{\r\n position: absolute;\r\n content: \"\";\r\n background: #919191;\r\n width: 100%;\r\n height: 1px;\r\n bottom: 0;\r\n left: 0;\r\n }\r\n &:hover{\r\n color: #009DFF;\r\n }\r\n &:hover::before{\r\n background: #009DFF;\r\n }\r\n}\r\n.book_now{\r\n display: inline-block;\r\n font-size: 14px;\r\n color: #009DFF;\r\n border: 1px solid #009DFF;\r\n text-transform: capitalize;\r\n padding: 10px 25px;\r\n &:hover{\r\n background: #009DFF;\r\n color: #fff;\r\n }\r\n}",
+ ".section_title{\r\n h3{\r\n font-size: 50px;\r\n font-weight: 400;\r\n line-height: 51px;\r\n color: $theme-color2;\r\n font-family: $font1;\r\n margin-bottom: 21px;\r\n @media #{$mobile_device} {\r\n font-size: 27px;\r\n line-height: 33px;\r\n }\r\n @media #{$tablet_device} {\r\n font-size: 32px;\r\n line-height: 40px;\r\n }\r\n @media #{$mid_device} {\r\n font-size: 33px;\r\n line-height: 40px;\r\n }\r\n br{\r\n @media #{$mobile_device} {\r\n display: none;\r\n }\r\n }\r\n }\r\n p{\r\n font-size: 16px;\r\n line-height: 32px;\r\n color: #7f7f7f;\r\n font-weight: 400;\r\n }\r\n}\r\n.mb-100{\r\n margin-bottom: 100px;\r\n @media #{$mobile_device} {\r\n margin-bottom: 40px;\r\n }\r\n}\r\n.section_title2{\r\n i{\r\n font-size: 45px;\r\n color: #BC9321;\r\n display: block;\r\n }\r\n h3{\r\n font-size: 42px;\r\n font-weight: 400;\r\n line-height: 52px;\r\n color: $theme-color4;\r\n position: relative;\r\n padding-bottom: 30px;\r\n margin-top: 10px;\r\n &::before{\r\n position: absolute;\r\n content: \"\";\r\n width: 80px;\r\n height: 1px;\r\n background: #BC9321;\r\n bottom: 0;\r\n left: 50%;\r\n margin-left: -40px;\r\n }\r\n \r\n @media #{$mobile_device} {\r\n font-size: 30px;\r\n line-height: 36px;\r\n }\r\n @media #{$tablet_device} {\r\n font-size: 36px;\r\n line-height: 42px;\r\n }\r\n br{\r\n @media #{$mobile_device} {\r\n display: none;\r\n }\r\n }\r\n }\r\n}\r\n.section_title3 h3 {\r\n\tfont-size: 60px;\r\n\tcolor: #FFFFFF;\r\n\tfont-weight: 900;\r\n text-transform: capitalize;\r\n @media #{$mobile_device}{\r\n font-size: 30px;\r\n }\r\n @media #{$tablet_device}{\r\n font-size: 35px;\r\n }\r\n}\r\n.section_title3.padding_plus{\r\n\tpadding-top: 115px;\r\n padding-bottom: 50px;\r\n @media #{$mobile_device} {\r\n padding-top: 60px;\r\n padding-bottom: 30px;\r\n }\r\n @media #{$tablet_device} {\r\n padding-top: 80px;\r\n padding-bottom: 40px;\r\n }\r\n}\r\n.mb-55{\r\n margin-bottom: 53px;\r\n @media #{$mobile_device} {\r\n margin-bottom: 30px;\r\n }\r\n @media #{$tablet_device} {\r\n margin-bottom: 40px;\r\n }\r\n}\r\n.mb-40{\r\n margin-bottom: 40px;\r\n @media #{$mobile_device} {\r\n margin-bottom: 30px;\r\n }\r\n}\r\n\r\n.pl-68{\r\n padding-left: 68px;\r\n @media #{$mobile_device} {\r\n padding-left: 0;\r\n }\r\n @media #{$tablet_device} {\r\n padding-left: 0;\r\n }\r\n @media #{$mid_device} {\r\n padding-left: 0;\r\n }\r\n}",
+ "\r\n\r\n// slick-nav\r\n.mobile_menu{\r\n @media #{$mobile_device} {\r\n position: absolute;\r\n right: 0px;\r\n width: 100%;\r\n z-index: 9;\r\n }\r\n}\r\n.slicknav_menu{\r\n .slicknav_nav {\r\n background: #fff;\r\n float: right;\r\n margin-top: 0;\r\n padding: 0;\r\n width: 95%;\r\n padding: 0;\r\n border-radius: 0px;\r\n margin-top: 5px;\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n top: 11px;\r\n a{\r\n &:hover{\r\n background: transparent;\r\n color: #4A3600;\r\n }\r\n &.active{\r\n color: #4A3600;\r\n }\r\n i{\r\n @media #{$mobile_device} {\r\n display: none;\r\n }\r\n @media #{$tablet_device} {\r\n display: none;\r\n }\r\n }\r\n }\r\n .slicknav_btn {\r\n background-color: transparent;\r\n cursor: pointer;\r\n margin-bottom: 10px;\r\n margin-top: -40px;\r\n position: relative;\r\n z-index: 99;\r\n border: 1px solid #ddd;\r\n top: 3px;\r\n right: 5px;\r\n top: -32px;\r\n .slicknav_icon{\r\n margin-right: 6px;\r\n margin-top: 3px;\r\n position: relative;\r\n padding-bottom: 3px;\r\n top: -11px;\r\n right: -5px;\r\n }\r\n }\r\n }\r\n @media #{$mobile_device} {\r\n margin-right: 0px;\r\n }\r\n}\r\n\r\n\r\n// slick-nav\r\n.slicknav_nav .slicknav_arrow {\r\n float: right;\r\n font-size: 22px;\r\n position: relative;\r\n top: -9px; \r\n}\r\n.slicknav_btn {\r\n\tbackground-color: transparent;\r\n\tcursor: pointer;\r\n\tmargin-bottom: 10px;\r\n\tposition: relative;\r\n\tz-index: 99;\r\n\tborder: none;\r\n\tborder-radius: 3px;\r\n\ttop: 5px;\r\n\tpadding: 5px;\r\n\tright: 5px;\r\n\tmargin-top: -5px;\r\n\ttop: -31px;\r\n}\r\n.slicknav_btn {\r\n\tbackground-color: transparent;\r\n\tcursor: pointer;\r\n\tmargin-bottom: 10px;\r\n\tposition: relative;\r\n\tz-index: 99;\r\n\tborder: none;\r\n\tborder-radius: 3px;\r\n\ttop: 5px;\r\n\tpadding: 5px;\r\n\tright: 0;\r\n\tmargin-top: -5px;\r\n top: -26px;\r\n}",
+ ".header-area{\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n width: 100%;\r\n top: 0;\r\n z-index: 9;\r\n @media #{$mobile_device} {\r\n padding-top: 0;\r\n }\r\n @media #{$tablet_device} {\r\n padding-top: 0;\r\n }\r\n .main-header-area{\r\n // padding: 0 150px;\r\n @media #{$mobile_device} {\r\n padding: 10px 10px;\r\n }\r\n @media #{$tablet_device} {\r\n padding: 10px 10px;\r\n }\r\n .logo-img{\r\n @media #{$mobile_device} {\r\n // padding-left: 20px;\r\n text-align: left;\r\n }\r\n @media #{$tablet_device} {\r\n // padding-left: 20px;\r\n text-align: left;\r\n }\r\n @media #{$mid_device} {\r\n // padding-left: 20px;\r\n text-align: left;\r\n }\r\n img{\r\n @media #{$mobile_device} {\r\n // padding-left: 20px;\r\n width: 70px;\r\n }\r\n @media #{$tablet_device} {\r\n // padding-left: 20px;\r\n width: 70px;\r\n }\r\n \r\n }\r\n }\r\n .book_room{\r\n @include flexbox();\r\n @include align-items(center);\r\n @include justify-content(flex-end);\r\n .socail_links{\r\n ul{\r\n li{\r\n display: inline-block;\r\n\r\n a{\r\n color: #A8A7A0;\r\n margin: 0 10px;\r\n font-size: 15px;\r\n &:hover{\r\n color: #fff;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n .book_btn{\r\n a{\r\n background: $btn_bg;\r\n font-size: 16px;\r\n font-weight: 400;\r\n border: 1px solid transparent ;\r\n color: #fff;\r\n padding: 19px 43px 23px 43px;\r\n font-family: $font2;\r\n display: inline-block;\r\n line-height: 1;\r\n &:hover{\r\n background: transparent;\r\n color: $btn_bg;\r\n border: 1px solid $btn_bg;\r\n }\r\n }\r\n }\r\n }\r\n .main-menu{\r\n text-align: center;\r\n ul{\r\n li{\r\n display: inline-block;\r\n position: relative;\r\n margin-right: 45px;\r\n @media #{$mid_device} {\r\n margin-right: 30px;\r\n }\r\n @media #{$large_device} {\r\n margin-right: 45px;\r\n }\r\n a{\r\n color: #fff;\r\n font-size: 16px;\r\n text-transform: capitalize;\r\n font-weight: 400;\r\n display: inline-block;\r\n padding: 39px 0px 39px 0px;\r\n font-family: $font2;\r\n position: relative;\r\n text-transform:capitalize;\r\n \r\n @media #{$mid_device} {\r\n // padding: 41px 0px 10px 0px;\r\n font-size: 15px;\r\n }\r\n @media #{$large_device} {\r\n // padding: 41px 0px 10px 0px;\r\n font-size: 15px;\r\n }\r\n i{\r\n font-size: 9px;\r\n @media #{$mobile_device}{\r\n display: none !important;\r\n }\r\n @media #{$tablet_device}{\r\n display: none !important;;\r\n }\r\n }\r\n // &::before {\r\n // position: absolute;\r\n // content: \"\";\r\n // background: #BC9321;\r\n // width: 100%;\r\n // height: 2px;\r\n // bottom: 0;\r\n // left: 0;\r\n // opacity: 0;\r\n // transform: scaleX(0);\r\n // @include transition(.3s);\r\n // }\r\n // &:hover::before{\r\n // opacity: 1;\r\n // transform: scaleX(1);\r\n // }\r\n &.active{\r\n // &::before{\r\n // opacity: 1;\r\n // transform: scaleX(1);\r\n // }\r\n }\r\n &:hover{\r\n color: #fff;\r\n }\r\n }\r\n .submenu {\r\n position: absolute;\r\n left: 0;\r\n top: 140%;\r\n background: #fff;\r\n width: 200px;\r\n z-index: 2;\r\n box-shadow: 0 0 10px rgba(0,0,0,.02);\r\n opacity: 0;\r\n visibility: hidden;\r\n text-align: left;\r\n @include transition(.6s);\r\n li{\r\n display: block;\r\n a{\r\n padding: 10px 15px;\r\n position: inherit;\r\n @include transition(.3s);\r\n display: block;\r\n color: #000;\r\n &::before{\r\n display: none;\r\n }\r\n }\r\n &:hover a{\r\n color: #000;\r\n }\r\n }\r\n }\r\n &:hover > .submenu{\r\n opacity: 1;\r\n visibility: visible;\r\n top: 100%;\r\n }\r\n &:hover > a::before{\r\n opacity: 1;\r\n transform: scaleX(1);\r\n }\r\n &:first-child a {\r\n padding-left: 0;\r\n }\r\n }\r\n }\r\n }\r\n &.sticky {\r\n box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);\r\n position: fixed;\r\n width: 100%;\r\n top: -70px;\r\n left: 0;\r\n right: 0;\r\n z-index: 999;\r\n transform: translateY(70px);\r\n transition: transform 500ms ease, background 500ms ease;\r\n -webkit-transition: transform 500ms ease, background 500ms ease;\r\n box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);\r\n background: #000;;\r\n @media #{$mobile_device} {\r\n padding: 10px 10px;\r\n }\r\n @media #{$tablet_device} {\r\n padding: 10px 10px;\r\n }\r\n @media #{$mid_device} {\r\n padding: 10px 20px;\r\n }\r\n @media #{$large_device} {\r\n padding: 10px 20px\r\n }\r\n .main-menu{\r\n padding: 0;\r\n }\r\n }\r\n \r\n }\r\n\r\n}",
+ ".slider_bg_1{\r\n background-image: url(../img/banner/banner.png);\r\n}\r\n.slider_bg_2{\r\n background-image: url(../img/banner/banner2.png);\r\n}\r\n.slider_bg_3{\r\n background-image: url(../img/banner/banner3.png);\r\n}\r\n.slider_area{\r\n .single_slider{\r\n height: 900px;\r\n background-size: cover;\r\n background-repeat: no-repeat;\r\n\r\n @media #{$mobile_device} {\r\n height: 600px;\r\n }\r\n @media #{$tablet_device} {\r\n height: 600px;\r\n }\r\n .slider_text{\r\n h3{\r\n color: #ffffff;\r\n font-family: $font1;\r\n font-size: 65px;\r\n font-weight: 900;\r\n margin-bottom: 4px;\r\n line-height: 75px;\r\n @media #{$mobile_device} {\r\n font-size: 33px;\r\n line-height: 40px;\r\n }\r\n @media #{$tablet_device} {\r\n font-size: 30px;\r\n line-height: 46px;\r\n }\r\n @media #{$mid_device} {\r\n font-size: 35px;\r\n line-height: 45px;\r\n }\r\n }\r\n p{\r\n font-size: 16px;\r\n font-weight: 400;\r\n color: #ffffff;\r\n margin-bottom: 0;\r\n margin-top: 0;\r\n line-height: 26px;\r\n display: inline-block;\r\n position: relative;\r\n margin-bottom: 41px;\r\n margin-top: 22px;\r\n @media #{$mid_device} {\r\n font-size: 16px;\r\n }\r\n @media #{$mobile_device} {\r\n font-size: 16px;\r\n }\r\n }\r\n }\r\n } \r\n\r\n .owl-dots {\r\n position: absolute;\r\n left: 50%;\r\n transform: translateX(-50%);\r\n bottom: 25px;\r\n .owl-dot {\r\n width: 10px;\r\n height: 10px;\r\n background: #000;\r\n border-radius: 50%;\r\n display: inline-block;\r\n background-color: rgba(252, 229, 207,.2);\r\n margin: 0 6px;\r\n &.active{\r\n background: #fff; \r\n }\r\n }\r\n }\r\n}\r\n ",
+ ".about_area{\r\n padding-top: 150px;\r\n padding-bottom: 150px;\r\n background: #FDF9F6;\r\n @media #{$mobile_device} {\r\n padding-top: 40px;\r\n padding-bottom: 40px;\r\n }\r\n @media #{$tablet_device} {\r\n padding-top: 80px;\r\n padding-bottom: 80px;\r\n }\r\n @media #{$mid_device} {\r\n padding-top: 100px;\r\n padding-bottom: 100px;\r\n }\r\n .section_title{\r\n p{\r\n color: #575757;\r\n }\r\n }\r\n .about_info{\r\n padding-left: 68px;\r\n @media #{$mobile_device}{\r\n padding-left: 0;\r\n }\r\n @media #{$tablet_device}{\r\n padding-left: 0;\r\n }\r\n .opening_hour{\r\n font-family: $font1;\r\n font-size: 30px;\r\n font-weight: 400;\r\n color: #252219;\r\n margin-bottom: 55px;\r\n margin-top: 37px;\r\n span{\r\n font-family: $font2;\r\n color: #252219;\r\n font-size: 20px;\r\n margin-left: 6px;\r\n display: inline-block;\r\n @media #{$mobile_device} {\r\n margin-left: 0;\r\n }\r\n }\r\n }\r\n }\r\n .about_thumbs{\r\n position: relative;\r\n @include justify-content(flex-end);\r\n @media #{$tablet_device} {\r\n // display: block !important;\r\n @include justify-content(flex-start);\r\n margin-top: 30px;\r\n }\r\n @media #{$mobile_device} {\r\n margin-bottom: 30px;\r\n }\r\n img{\r\n width: 100%;\r\n }\r\n .large_img_1{\r\n padding-right: 156px;\r\n @media #{$mobile_device} {\r\n padding-right: 40px;\r\n }\r\n @media #{$tablet_device} {\r\n padding-right: 0px;\r\n }\r\n @media #{$mid_device} {\r\n padding-right: 100px;\r\n }\r\n }\r\n .small_img_1{\r\n position: absolute;\r\n right: 0;\r\n bottom: 0;\r\n border-top: 15px solid #ffffff;\r\n border-left: 15px solid #ffffff;\r\n top: 80px;\r\n @media #{$mobile_device} {\r\n position: absolute;\r\n right: 0;\r\n bottom: 0;\r\n border-top: 15px solid\r\n #ffffff;\r\n border-left: 15px solid\r\n #ffffff;\r\n top: auto;\r\n width: 50%;\r\n height: 60%;\r\n }\r\n @media #{$tablet_device}{\r\n bottom: -30px;\r\n }\r\n img{\r\n width: 100%;\r\n height: 100%;\r\n }\r\n }\r\n }\r\n}\r\n",
+ ".prising_area{\r\n position: relative;\r\n background: #fdf9f6;\r\n padding-top: 144px;\r\n padding-bottom: 100px;\r\n z-index: 0;\r\n &::after{\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n content: '';\r\n background-image: url(../img/banner/prise_bg.png);\r\n height: 100%;\r\n width: 100%;\r\n opacity: .04;\r\n z-index: -1;\r\n }\r\n .prise_title{\r\n h4{\r\n font-size: 25px;\r\n color: #eb592d;\r\n margin-bottom: 35px;\r\n }\r\n }\r\n .single_service{\r\n margin-bottom: 50px;\r\n .service_inner{\r\n .thumb{\r\n img{\r\n width: 60px;\r\n height: 60px;\r\n @include border-radius(50%);\r\n overflow: hidden;\r\n }\r\n }\r\n }\r\n .hair_style_info{\r\n padding-left: 20px;\r\n .prise{\r\n margin-bottom: 5px;\r\n position: relative;\r\n &::before{\r\n position: absolute;\r\n height: 1px;\r\n content: '';\r\n border-bottom: 1px dashed#d7d4d1;\r\n bottom: 7px;\r\n left: 29%;\r\n right: 12%;\r\n }\r\n span{\r\n font-size: 16px;\r\n color: #222222;\r\n font-family: $font1;\r\n }\r\n }\r\n p{\r\n font-size: 16px;\r\n color: #7f7f7f;\r\n font-weight: 400;\r\n margin-bottom: 0;\r\n }\r\n }\r\n }\r\n .prising_active{\r\n @media #{$mobile_device}{\r\n display: block !important;\r\n }\r\n .single_prising{\r\n overflow: hidden;\r\n -webkit-box-flex: 45%;\r\n -ms-flex: 45% 0 0px;\r\n flex: 45% 0 0;\r\n @media #{$mobile_device}{\r\n -webkit-box-flex: 100%;\r\n -ms-flex: 100% 0 0px;\r\n flex: 100% 0 0;\r\n }\r\n .service_inner{\r\n // flex: 10% 0 0;\r\n float: left;\r\n overflow: hidden;\r\n }\r\n .hair_style_info{\r\n // flex: 90% 0 0;\r\n overflow: hidden;\r\n }\r\n }\r\n }\r\n\r\n\r\n .owl-carousel .owl-nav div.owl-next {\r\n left: auto;\r\n right: 0;\r\n }\r\n .owl-carousel .owl-nav div.owl-prev {\r\n left: auto;\r\n right: 54px;\r\n }\r\n .owl-carousel .owl-nav div {\r\n left: 0;\r\n background: #000;\r\n width: 34px;\r\n height: 34px;\r\n line-height: 34px;\r\n text-align: center;\r\n @include border-radius(4px);\r\n border: 1px solid #ddc4c4;\r\n background: #fff;\r\n font-size: 14px;\r\n color: #f39b80 !important;\r\n left: auto;\r\n top: -96px;\r\n right: 10px;\r\n\t\t-webkit-transform: translateY(0%);\r\n\t\t\t-ms-transform: translateY(0%);\r\n\t\t\t\ttransform: translateY(0%);\r\n }\r\n .owl-carousel .owl-nav div {\r\n color: #7E8D9A;\r\n &:hover{\r\n background: #F91842;\r\n border-color: #eb592d;\r\n color: #fff !important;\r\n }\r\n }\r\n .owl-carousel .owl-nav div.owl-prev i {\r\n\r\n position: relative;\r\n right: 1px;\r\n top: -1px;\r\n }\r\n .owl-carousel .owl-nav div.owl-next i {\r\n\r\n position: relative;\r\n right: 0;\r\n top: -1px;\r\n }\r\n}",
+ ".service_area{\r\n padding-top: 150px;\r\n padding-bottom: 120px;\r\n @media #{$mobile_device} {\r\n padding-top: 60px;\r\n padding-bottom: 30px;\r\n }\r\n .single_service{\r\n .service_thumb{\r\n overflow: hidden;\r\n img{\r\n width: 100%;\r\n @include transition(.3s);\r\n @include transform(scale(1));\r\n }\r\n }\r\n .service_content{\r\n position: relative;\r\n padding: 64px 60px;\r\n border: 1px solid #ffd1af;\r\n border-top: none;\r\n margin-bottom: 30px;\r\n @media #{$mobile_device}{\r\n padding: 40px 30px 30px 30px;\r\n }\r\n @media #{$mid_device}{\r\n padding: 40px 30px 30px 30px;\r\n }\r\n .icon{\r\n width: 55px;\r\n height: 55px;\r\n @include border-radius(50%);\r\n @include box-shadow(0px 0px 46px 0px rgba(0, 0, 0, 0.28));\r\n color: #eb592d;\r\n text-align: center;\r\n line-height:55px;\r\n position: absolute;\r\n left: 50%;\r\n transform: translateX(-50%);\r\n margin-top: -25px;\r\n z-index: 0;\r\n background:#fff;\r\n top: 0;\r\n font-size: 25px;\r\n @include transition(.3s);\r\n }\r\n h3{\r\n font-size: 25px;\r\n font-weight: 400;\r\n color: #141419;\r\n }\r\n p{\r\n font-size: 16px;\r\n line-height: 32px;\r\n color: #575757;\r\n font-weight: 400;\r\n margin-bottom: 0;\r\n }\r\n }\r\n &:hover{\r\n .service_thumb{\r\n img{\r\n @include transform(scale(1.1));\r\n }\r\n }\r\n .service_content{\r\n .icon{\r\n @include box-shadow(0px 0px 50px 0px rgba(0, 0, 0, 0.30));\r\n }\r\n }\r\n \r\n }\r\n }\r\n}\r\n\r\n ",
+ ".team_area{\r\n padding-bottom: 120px;\r\n padding-top: 150px;\r\n @media #{$mobile_device} {\r\n padding-top: 60px;\r\n padding-bottom: 30px;\r\n }\r\n .single_team_member{\r\n @media #{$tablet_device} {\r\n margin-bottom: 30px;\r\n }\r\n .team_thumb{\r\n overflow: hidden;\r\n img{\r\n width: 100%;\r\n @include transform(scale(1));\r\n @include transition(.3s);\r\n }\r\n }\r\n .member_info{\r\n background: #fdf9f6;\r\n padding: 36px 0 35px 0;\r\n h3{\r\n font-size: 25px;\r\n font-weight: 400;\r\n color: #222222;\r\n margin-bottom: 0;\r\n margin-bottom: 6px;\r\n }\r\n p{\r\n font-size: 18px;\r\n font-weight: 400;\r\n font-family: $font2;\r\n color: #eb592d;\r\n margin-bottom: 0;\r\n }\r\n }\r\n &:hover{\r\n .team_thumb{\r\n img{\r\n @include transform(scale(1.1));\r\n }\r\n }\r\n }\r\n }\r\n}",
+ ".make_apppointment_area{\r\n padding-top: 150px;\r\n padding-bottom: 120px;\r\n background: #fdf9f6;\r\n @media #{$mobile_device} {\r\n padding-top: 60px;\r\n padding-bottom: 30px;\r\n }\r\n .appoint_ment_form{\r\n margin-bottom: 30px;\r\n form{\r\n .single_field{\r\n margin-bottom: 32px;\r\n input,textarea{\r\n width: 100%;\r\n border: 0;\r\n padding-bottom: 3px;\r\n border-bottom: 1px solid #c1c1c1;\r\n padding-left: 10px;\r\n height: 50px;\r\n font-family: $font2;\r\n color: #000;\r\n background: transparent ;\r\n &::placeholder{\r\n color: #96989a;\r\n font-weight: 400;\r\n font-family: $font2;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n }\r\n textarea{\r\n resize: none;\r\n margin-top: 41px;\r\n padding: 11px 20px 14px 10px;\r\n }\r\n &:last-child{\r\n margin-bottom: 0;\r\n }\r\n }\r\n\r\n button{\r\n transition: .3s;\r\n cursor: pointer;\r\n }\r\n p{\r\n margin-top: 17px;\r\n margin-bottom: 40px;\r\n font-size: 16px;\r\n font-weight: 400;\r\n color: #464444;\r\n line-height: 30px;\r\n }\r\n }\r\n }\r\n\r\n // appointMent_info \r\n .appointMent_info{\r\n .single_appontment{\r\n margin-bottom: 36px;\r\n h4{\r\n font-size: 18px;\r\n color: #4a4948;\r\n font-weight: 400;\r\n }\r\n p{\r\n font-size: 16px;\r\n line-height: 30px;\r\n color: #7f7f7f;\r\n font-weight: 400;\r\n margin-bottom: 0;\r\n span{\r\n flex: 50% 0 0;\r\n }\r\n }\r\n } \r\n }\r\n}",
+ "\r\n.testimonial_area{\r\n // background-image: url(../img/banner/testmonial.png);\r\n background-size: cover;\r\n background-position: center center;\r\n background-repeat: no-repeat;\r\n position: relative;\r\n padding: 0px 0 144px 0;\r\n background: #fff;\r\n @media #{$mobile_device} {\r\n padding:0 0 50px 0;\r\n }\r\n .single_testmonial{\r\n p{\r\n color: #7f7f7f;\r\n font-weight: 400;\r\n font-size: 18px;\r\n line-height: 32px;\r\n margin-bottom: 40px;\r\n font-family: $font2;\r\n font-style: italic;\r\n br{\r\n @media (min-width: 320px) and (max-width: 991px) {\r\n display: none;\r\n }\r\n }\r\n\r\n }\r\n .testmonial_author{\r\n .thumb{\r\n width: 60px;\r\n height: 60px;\r\n @include border-radius(50%);\r\n margin: auto;\r\n margin: auto auto 21px auto;\r\n }\r\n h3{\r\n color: #8c8c8c;\r\n font-size: 16px;\r\n font-weight: 400;\r\n font-family: $font1;\r\n } \r\n }\r\n }\r\n .owl-carousel .owl-item img {\r\n display: inline-block;\r\n width: auto;\r\n }\r\n .owl-carousel .owl-nav div.owl-next {\r\n left: auto;\r\n right: 98px;\r\n }\r\n .owl-carousel .owl-nav div {\r\n left: 0;\r\n background: #000;\r\n width: 34px;\r\n height: 34px;\r\n line-height: 34px;\r\n text-align: center;\r\n @include border-radius(4px);\r\n border: 1px solid #ddc4c4;\r\n background: #fff;\r\n font-size: 14px;\r\n color: #f39b80 !important;\r\n left: 98px;\r\n top: 20%;\r\n\t\t-webkit-transform: translateY(-80%);\r\n\t\t\t-ms-transform: translateY(-80%);\r\n\t\t\t\ttransform: translateY(-80%);\r\n }\r\n .owl-carousel .owl-nav div {\r\n color: #7E8D9A;\r\n &:hover{\r\n background: #F91842;\r\n border-color: #eb592d;\r\n color: #fff !important;\r\n }\r\n }\r\n .owl-carousel .owl-nav div.owl-prev i {\r\n\r\n position: relative;\r\n right: 1px;\r\n top: -1px;\r\n }\r\n .owl-carousel .owl-nav div.owl-next i {\r\n\r\n position: relative;\r\n right: 0;\r\n top: -1px;\r\n }\r\n}\r\n\r\n// Information_area \r\n.Information_area{\r\n background-image: url(../img/banner/info_banner.png);\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n background-position: center center;\r\n padding: 162px 0;\r\n @media #{$mobile_device} {\r\n padding: 100px 0;\r\n }\r\n .info_text{\r\n h3{\r\n font-size: 46px;\r\n font-weight: 300;\r\n color: #fff;\r\n margin-bottom: 0;\r\n @media #{$mobile_device} {\r\n font-size: 30px;\r\n }\r\n }\r\n p{\r\n font-size: 15px;\r\n font-weight: 400;\r\n color: #E8E8E8;\r\n margin: 25px 0;\r\n }\r\n a.boxed-btn3{\r\n padding: 14px 40px;\r\n }\r\n }\r\n}\r\n\r\n\r\n// newsletter \r\n.newsletter_form{\r\n position: relative;\r\n margin-bottom: 20px;\r\n input{\r\n width: 100%;\r\n height: 45px;\r\n background: #fff;\r\n padding-left: 20px;\r\n font-size: 16px;\r\n color: #000;\r\n border: none;\r\n &::placeholder{\r\n font-size: 16px;\r\n color: #919191;\r\n }\r\n }\r\n button{\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n height: 100%;\r\n border: none;\r\n font-size: 14px;\r\n color: #fff;\r\n background: #A70000;\r\n padding: 10px;\r\n padding: 0 22px;\r\n cursor: pointer;\r\n }\r\n}\r\n.newsletter_text{\r\n font-size: 16px;\r\n color: #BABABA;\r\n}",
+ ".gallery_area{\r\n padding-bottom: 150px;\r\n padding-top: 120px;\r\n &.minus-padding{\r\n padding-top: 0;\r\n margin-top: -16px;\r\n }\r\n @media #{$mobile_device}{\r\n padding-top: 60px;\r\n padding-bottom: 60px;\r\n }\r\n .single_gallery{\r\n overflow: hidden;\r\n .thumb{\r\n position: relative;\r\n overflow: hidden;\r\n img{\r\n width: 100%;\r\n @include transform(scaleX(1));\r\n @include transition(.5s);\r\n }\r\n .image_hover{\r\n position: absolute;\r\n left: 0;\r\n top: 0;\r\n width: 100%;\r\n height: 100%;\r\n background: rgba(188, 147, 33, .50);\r\n transform: translateX(-40%);\r\n opacity: 0;\r\n @include transition(.5s);\r\n a{\r\n position: absolute;\r\n top: 44%;\r\n left: 50%;\r\n @include transform(translate(-50%));\r\n font-size: 35px;\r\n color: #fff;\r\n }\r\n }\r\n }\r\n &:hover{\r\n .image_hover{\r\n transform: translateX(0%);\r\n opacity: 1;\r\n }\r\n img{\r\n width: 100%;\r\n @include transform(scaleX(1.2));\r\n }\r\n }\r\n }\r\n}\r\n\r\n.video_area{\r\n background: #FFFBF0;\r\n .video_info{\r\n padding: 200px 0;\r\n padding-left: 400px;\r\n @media #{$tablet_device} { \r\n padding: 100px 60px;\r\n padding-left: 60px;\r\n }\r\n @media #{$mid_device} { \r\n padding: 0px 0px;\r\n padding-left: 60px;\r\n }\r\n @media #{$large_device} { \r\n padding: 0px 0px;\r\n padding-left: 60px;\r\n }\r\n \r\n @media #{$mobile_device} {\r\n padding: 60px 0;\r\n padding-right: 0px;\r\n padding-left: 0px;\r\n padding-left: 15px;\r\n padding-right: 15px;\r\n }\r\n .about_info{\r\n \r\n }\r\n .about_info{\r\n padding-left: 0;\r\n @media #{$mobile_device} {\r\n padding-right: 0;\r\n }\r\n p{\r\n font-size: 16px;\r\n line-height: 28px;\r\n font-size: 16px;\r\n line-height: 28px;\r\n margin-top: 0;\r\n margin-bottom: 47px;\r\n @media #{$mid_device}{\r\n padding-right: 30px;\r\n }\r\n br{\r\n @media #{$mid_device} { \r\n display: none;\r\n\r\n }\r\n \r\n }\r\n }\r\n a{\r\n @media #{$mobile_device} {\r\n margin-bottom: 30px;\r\n }\r\n }\r\n }\r\n }\r\n .video_thumb{\r\n \r\n .video_thumb_inner{\r\n position: relative;\r\n img{\r\n width: 100%;\r\n }\r\n a{\r\n width: 94px;\r\n height: 94px;\r\n background: #fff;\r\n @include border-radius(50%);\r\n display: inline-block;\r\n font-size: 22px;\r\n color: $theme-color4;\r\n line-height: 94px;\r\n text-align: center;\r\n top: 50%;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n @include transform(translateY(-50%));\r\n position: absolute;\r\n &::before {\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n // background: red;\r\n content: \"\";\r\n border-radius: 50%;\r\n left: 0;\r\n bottom: 0;\r\n box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);\r\n transform: scale(1);\r\n animation: pulse 2s infinite;\r\n box-shadow: 0 0 0 rgba(204,169,44, 0.4);\r\n }\r\n }\r\n }\r\n\r\n }\r\n}\r\n.pulse:hover {\r\n animation: none;\r\n}\r\n\r\n@keyframes pulse {\r\n 0% {\r\n -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);\r\n box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);\r\n }\r\n 100% {\r\n -moz-box-shadow: 0 0 0 30px rgba(204,169,44, 0);\r\n box-shadow: 0 0 0 30px rgba(204,169,44, 0);\r\n }\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n#test-form{\r\n .white-popup-block{\r\n .popup_inner{\r\n .gj-datepicker{\r\n span{\r\n color: red;\r\n }\r\n }\r\n }\r\n input{\r\n width: 100%;\r\n height: 50px;\r\n }\r\n }\r\n}\r\n\r\n.gj-datepicker input {\r\n width: 100%;\r\n height: 50px;\r\n border: 1px solid #ddd;\r\n padding: 17px;\r\n font-size: 12px;\r\n color: #919191;\r\n margin-bottom: 20px;\r\n}\r\n.gj-datepicker-md [role=\"right-icon\"] {\r\n position: absolute;\r\n right: 0px;\r\n top: 0px;\r\n font-size: 14px;\r\n color: #919191;\r\n margin-right: 15px;\r\n top: 16px;\r\n}\r\n.gj-picker-md {\r\n font-family: \"Roboto\",\"Helvetica\",\"Arial\",sans-serif;\r\n font-size: 16px;\r\n font-weight: 400;\r\n letter-spacing: .04em;\r\n line-height: 1;\r\n color: rgba(0,0,0,.87);\r\n padding: 10px;\r\n padding: 20px;\r\n border: 1px solid #E0E0E0;\r\n}\r\n#timepicker {\r\n\twidth: 100%;\r\n\theight: 50px;\r\n\tborder: 1px solid #ddd;\r\n\tpadding: 20px;\r\n text-transform: capitalize;\r\n color: #919191;\r\n}\r\n.gj-timepicker.gj-timepicker-md.gj-unselectable i {\r\n top: 16px;\r\n right: 12px;\r\n font-size: 18px;\r\n color: #919191;\r\n}\r\n.popup_inner input {\r\n width: 100%;\r\n height: 50px;\r\n margin-bottom: 30px;\r\n color: #000;\r\n padding: 18px;\r\n border: 1px solid #ddd;\r\n &:focus{\r\n outline: none;\r\n }\r\n &::placeholder{\r\n color: #919191;\r\n font-size: 16px;\r\n }\r\n}\r\n",
+ ".footer{\r\n background-repeat: no-repeat;\r\n background-position: center center;\r\n background-repeat: no-repeat;\r\n background-size: cover;\r\n background: #0d0e0f;\r\n position: relative;\r\n z-index: 0;\r\n .footer_top{\r\n padding-top: 130px;\r\n padding-bottom: 110px;\r\n @media #{$mobile_device} {\r\n padding-top: 60px;\r\n padding-bottom: 30px;\r\n }\r\n .footer_widget{\r\n .address_text{\r\n font-size: 16px;\r\n font-weight: 400;\r\n color: #959595;\r\n }\r\n @media #{$mobile_device} {\r\n margin-bottom: 30px;\r\n }\r\n @media #{$tablet_device} {\r\n margin-bottom: 30px;\r\n }\r\n .links {\r\n position: relative;\r\n top: -14px;\r\n &.double_links{\r\n li{\r\n width: 50%;\r\n float: left;\r\n }\r\n }\r\n }\r\n .footer_title{\r\n font-size: 18px;\r\n font-weight: 400;\r\n color: #fff;\r\n text-transform: capitalize;\r\n margin-bottom: 38px;\r\n font-family: $font1;\r\n position: relative;\r\n margin-top: 20px;\r\n @media #{$mobile_device} {\r\n margin-bottom: 20px;\r\n }\r\n }\r\n .footer_logo{\r\n font-size: 22px;\r\n font-weight: 400;\r\n color: #fff;\r\n text-transform: capitalize;\r\n margin-bottom: 35px;\r\n @media #{$mobile_device} {\r\n margin-bottom: 20px;\r\n }\r\n }\r\n p {\r\n\r\n color: #AAB1B7;\r\n font-size: 14px;\r\n font-weight: 400;\r\n line-height: 26px;\r\n color: #AAB1B7;\r\n a{\r\n color: #AAB1B7;\r\n &:hover{\r\n color: $btn-bg;\r\n }\r\n }\r\n \r\n }\r\n p.footer_text{\r\n font-size: 16px;\r\n color: #B2B2B2;\r\n margin-bottom: 23px;\r\n font-weight: 400;\r\n line-height: 26px;\r\n a.domain{\r\n color: #B2B2B2;\r\n font-weight: 400;\r\n &:hover{\r\n color: $btn-bg;\r\n border-bottom: 1px solid $btn-bg\r\n }\r\n }\r\n &.doanar{\r\n a{\r\n font-weight: 500;\r\n color: #B2B2B2;\r\n \r\n &:hover{\r\n color: $btn-bg;\r\n border-bottom: 1px solid $btn-bg\r\n }\r\n &.first{\r\n margin-bottom: 10px;\r\n }\r\n }\r\n\r\n }\r\n }\r\n ul{\r\n li{\r\n color: #ACACAC;\r\n font-size: 16px;\r\n line-height: 40px;\r\n a{\r\n color: #959595;\r\n font-weight: 400;\r\n font-family: $font2;\r\n &:hover{\r\n color: $btn-bg;\r\n }\r\n }\r\n }\r\n }\r\n .newsletter_form{\r\n position: relative;\r\n margin-bottom: 20px;\r\n input{\r\n width: 100%;\r\n height: 50px;\r\n background: #F5FBFF;\r\n padding-left: 20px;\r\n font-size: 15px;\r\n color: #000;\r\n border: none;\r\n border: 1px solid #E8E8E8;\r\n border-radius: 30px;\r\n font-family: $font2;\r\n padding-right: 120px;\r\n &::placeholder{\r\n font-size: 15px;\r\n color: #AAB1B7;\r\n }\r\n &:focus{\r\n outline: none;\r\n }\r\n }\r\n button{\r\n position: absolute;\r\n top: 0;\r\n right: 0;\r\n height: 40px;\r\n border: none;\r\n font-size: 14px;\r\n color: #fff;\r\n background: $btn-bg;\r\n padding: 10px;\r\n padding: 0 22px;\r\n cursor: pointer;\r\n border-radius: 30px;\r\n top: 5px;\r\n right: 5px;\r\n font-size: 14px;\r\n font-weight: 500;\r\n font-family: $font2;\r\n }\r\n }\r\n .newsletter_text{\r\n font-size: 14px;\r\n color: #AAB1B7;\r\n line-height: 26px;\r\n font-family: $font2;\r\n }\r\n .instagram_feed{\r\n margin: -7.5px -7.5px 0 -7.5px;\r\n .single_insta{\r\n width: 33.33%;\r\n float: left;\r\n padding: 7.5px;\r\n \r\n overflow: hidden;\r\n img{\r\n width: 100%;\r\n @include border-radius(5px);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n .copy-right_text{\r\n padding-bottom: 32px;\r\n .copy_right{\r\n font-size: 15px;\r\n color: #888888;\r\n margin-bottom: 0;\r\n font-weight: 400;\r\n @media #{$mobile_device} {\r\n font-size: 15px;\r\n }\r\n a{\r\n color: $btn-bg;\r\n }\r\n }\r\n }\r\n .socail_links{\r\n margin-top: 26px;\r\n @media #{$mobile_device} {\r\n margin-top: 20px;\r\n }\r\n ul{\r\n li{\r\n display: inline-block;\r\n\r\n a{\r\n font-size: 15px;\r\n color: #C3B2F0;\r\n width: 30px;\r\n // height: 40px;\r\n display: inline-block;\r\n text-align: center;\r\n background: transparent;\r\n // @include border-radius(50%);\r\n // line-height: 40px !important;\r\n margin-right: 7px;\r\n color: #FFFFFF;\r\n line-height: 40px !important;\r\n // border: 1px solid #E8E8E8;\r\n color: #E8E8E8;\r\n &:hover{\r\n color: $btn-bg !important;\r\n border-color: transparent;\r\n }\r\n }\r\n }\r\n }\r\n\r\n }\r\n}\r\n",
+ ".breadcam_bg{\r\n background-image: url(../img/banner/bradcam.png);\r\n}\r\n.breadcam_bg_1{\r\n background-image: url(../img/banner/bradcam2.png);\r\n}\r\n.breadcam_bg_2{\r\n background-image: url(../img/banner/bradcam3.png);\r\n}\r\n.bradcam_area{\r\n background-size: cover;\r\n background-position: center center;\r\n padding: 187px 0 115px 0;\r\n @media #{$mobile_device} {\r\n padding: 150px 0;\r\n }\r\n @media #{$tablet_device} {\r\n padding: 150px 0;\r\n }\r\n h3{\r\n font-size: 65px;\r\n color: #fff;\r\n font-weight: 400;\r\n margin-bottom: 0;\r\n text-transform: capitalize;\r\n @media #{$mobile_device} {\r\n font-size: 30px;\r\n }\r\n @media #{$tablet_device} {\r\n font-size: 40px;\r\n }\r\n }\r\n}\r\n\r\n.popup_box{\r\n // position: absolute;\r\n // left: 50%;\r\n // top: 50%;\r\n // transform: translate(-50%,-50%);\r\n background: #fff;\r\n display: inline-block;\r\n z-index: 9;\r\n width: 681px;\r\n padding: 60px 40px;\r\n @media #{$mobile_device} {\r\n width: 320px;\r\n padding: 45px 30px;\r\n }\r\n @media #{$large_mobile} {\r\n width: 420px !important;\r\n padding: 45px 30px;\r\n }\r\n \r\n h3{\r\n text-align: center;\r\n font-size: 22px;\r\n color: #1F1F1F;\r\n margin-bottom: 46px;\r\n }\r\n .boxed-btn3{\r\n width: 100%;\r\n text-transform: capitalize;\r\n }\r\n .nice-select {\r\n -webkit-tap-highlight-color: transparent;\r\n background-color: #fff;\r\n /* border-radius: 5px; */\r\n border: solid 1px #E2E2E2;\r\n box-sizing: border-box;\r\n clear: both;\r\n cursor: pointer;\r\n display: block;\r\n float: left;\r\n font-family: $font2;\r\n font-weight: normal;\r\n width: 100% !important;\r\n /* height: 42px; */\r\n line-height: 50px;\r\n outline: none;\r\n padding-left: 18px;\r\n padding-right: 30px;\r\n position: relative;\r\n text-align: left !important;\r\n -webkit-transition: all 0.2s ease-in-out;\r\n transition: all 0.2s ease-in-out;\r\n -webkit-user-select: none;\r\n -moz-user-select: none;\r\n -ms-user-select: none;\r\n user-select: none;\r\n white-space: nowrap;\r\n width: auto;\r\n border-radius: 0;\r\n margin-bottom: 30px;\r\n height: 50px !important;\r\n font-size: 16px;\r\n font-weight: 400;\r\n color: #919191;\r\n &::after {\r\n content: \"\\f0d7\";\r\n display: block;\r\n height: 5px;\r\n margin-top: -5px;\r\n pointer-events: none;\r\n position: absolute;\r\n right: 17px;\r\n top: 3px;\r\n transition: all 0.15s ease-in-out;\r\n width: 5px;\r\n font-family: fontawesome;\r\n color: #919191;\r\n font-size: 15px;\r\n }\r\n &.open .list {\r\n opacity: 1;\r\n pointer-events: auto;\r\n -webkit-transform: scale(1) translateY(0);\r\n -ms-transform: scale(1) translateY(0);\r\n transform: scale(1) translateY(0);\r\n height: 200px;\r\n overflow-y: scroll;\r\n }\r\n &.list {\r\n height: 200px;\r\n overflow-y: scroll;\r\n }\r\n }\r\n}\r\n#test-form {\r\n display: inline-block;\r\n margin: auto;\r\n text-align: center;\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n @include transform (translate(-50%,-50%));\r\n @media #{$mobile_device}{\r\n top: 0;\r\n left: 0;\r\n width: 100%;\r\n height: 100%;\r\n @include transform (none);\r\n }\r\n .mfp-close-btn-in .mfp-close {\r\n color: #333;\r\n display: none !important;\r\n }\r\n button{\r\n &.mfp-close{\r\n display: none !important;\r\n @media #{$mobile_device} {\r\n display: block !important;\r\n position: absolute;\r\n left: 0;\r\n right: 0;\r\n margin: auto;\r\n }\r\n }\r\n }\r\n button.mfp-close {\r\n overflow: visible;\r\n cursor: pointer;\r\n background: transparent;\r\n border: 0;\r\n -webkit-appearance: none;\r\n display: block;\r\n outline: none;\r\n padding: 0;\r\n z-index: 1046;\r\n box-shadow: none;\r\n touch-action: manipulation;\r\n width: 40px;\r\n height: 40px;\r\n background: #4A3600;\r\n text-align: center;\r\n line-height: 20px;\r\n position: absolute;\r\n right: 0;\r\n border-bottom-right-radius: 20px;\r\n border-bottom-left-radius: 20px;\r\n position: absolute;\r\n right: -6px;\r\n color: #fff !important;\r\n }\r\n}\r\n\r\n.mfp-bg {\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: 1042;\r\n\toverflow: hidden;\r\n\tposition: fixed;\r\n\tbackground: #4A3600;\r\n\topacity: 0.6;\r\n}\r\n\r\n.gj-picker.gj-picker-md.datepicker.gj-unselectable {\r\n @media #{$mobile_device} {\r\n // width: 320px;\r\n // left: 0 !important;\r\n }\r\n\r\n}\r\n.gj-picker.gj-picker-md.timepicker {\r\n @media #{$mobile_device} {\r\n width: 310px;\r\n left: 6px !important;\r\n }\r\n\r\n}\r\n.gj-picker.gj-picker-md.datepicker.gj-unselectable {\r\n @media #{$mobile_device} {\r\n width: 320px;\r\n left: 0 !important;\r\n }\r\n}",
+ "/*=================== contact banner start ====================*/\n\n.dropdown .dropdown-menu {\n -webkit-transition: all 0.3s;\n -moz-transition: all 0.3s;\n -ms-transition: all 0.3s;\n -o-transition: all 0.3s;\n transition: all 0.3s;\n}\n.contact-info{\n margin-bottom: 25px;\n\n &__icon{\n margin-right: 20px;\n\n i,span{\n color: #8f9195;\n font-size: 27px;\n }\n }\n\n .media-body{\n\n h3{\n font-size: 16px;\n margin-bottom: 0;\n font-size: 16px;\n color: #2a2a2a;\n a{\n &:hover{\n color: $theme-color2;\n }\n }\n }\n\n p{\n color: #8a8a8a;\n }\n }\n}\n/*=================== contact banner end ====================*/\n\n\n/*=================== contact form start ====================*/\n.contact-title{\n font-size: 27px;\n font-weight: 600;\n margin-bottom: 20px;\n}\n\n.form-contact{\n\n label{\n font-size: 14px;\n }\n\n .form-group{\n margin-bottom: 30px;\n }\n\n .form-control{\n border: 1px solid #e5e6e9;\n border-radius: 0px;\n height: 48px;\n padding-left: 18px;\n font-size: 13px;\n background: transparent;\n\n &:focus{\n outline: 0;\n box-shadow: none;\n }\n\n &::placeholder{\n font-weight: 300;\n color: #999999;\n }\n }\n\n textarea{\n border-radius: 0px;\n height: 100% !important;\n }\n\n // button{\n // border: 0;\n // }\n}\n\n/*=================== contact form end ====================*/\n\n/* Contact Success and error Area css\n============================================================================================ */\n\n\n.modal-message {\n .modal-dialog {\n position: absolute;\n top: 36%;\n left: 50%;\n transform: translateX(-50%) translateY(-50%) !important;\n margin: 0px;\n max-width: 500px;\n width: 100%;\n .modal-content {\n .modal-header {\n text-align: center;\n display: block;\n border-bottom: none;\n padding-top: 50px;\n padding-bottom: 50px;\n .close {\n position: absolute;\n right: -15px;\n top: -15px;\n padding: 0px;\n color: #fff;\n opacity: 1;\n cursor: pointer;\n }\n h2 {\n display: block;\n text-align: center;\n padding-bottom: 10px;\n }\n p {\n display: block;\n }\n }\n }\n }\n}\n.contact-section{\n padding: 130px 0 100px;\n @media #{$tab}{\n padding: 70px 0 40px;\n }\n @media #{$medium_device}{\n padding: 80px 0 50px;\n }\n .btn_2{\n background-color:#191d34;\n padding: 18px 60px;\n border-radius: 50px;\n margin-top: 0;\n &:hover{\n background-color: $theme-color2;\n \n }\n }\n}\n\n\n",
+ "$default: #f9f9ff;\n$primary: $theme-color2;\n$success: #4cd3e3;\n$info: #38a4ff;\n$warning: #f4e700;\n$danger: #f44a40;\n$link: #f9f9ff;\n$disable: (#222222, .3);\n$primary-color: #7c32ff;\n$primary-color1: #c738d8;\n$title-color: #415094;\n$text-color: #828bb2;\n$white: #fff;\n$offwhite: #f9f9ff;\n$black: #000;\n// Mixins\n@mixin transition($args: all 0.3s ease 0s) {\n -webkit-transition: $args;\n -moz-transition: $args;\n -o-transition: $args;\n transition: $args;\n}\n\n@mixin transition-duration($args1, $args2) {\n -webkit-transition-duration: $args1, $args2;\n -moz-transition-duration: $args1, $args2;\n -o-transition-duration: $args1, $args2;\n transition-duration: $args1, $args2;\n}\n\n@mixin transition-delay($args1, $args2) {\n -webkit-transition-delay: $args1, $args2;\n -moz-transition-delay: $args1, $args2;\n -o-transition-delay: $args1, $args2;\n transition-delay: $args1, $args2;\n}\n\n@mixin transition-property($args1, $args2) {\n -webkit-transition-property: $args1, $args2;\n -moz-transition-property: $args1, $args2;\n -o-transition-property: $args1, $args2;\n transition-property: $args1, $args2;\n}\n\n@mixin filter($filter-type, $filter-amount) {\n -webkit-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -moz-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -ms-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n -o-filter: $filter-type+unquote(\"(#{$filter-amount})\");\n filter: $filter-type+unquote(\"(#{$filter-amount})\");\n}\n\n@mixin gradient($deg, $args1,$args2){\n background: -webkit-linear-gradient($deg, $args1, $args2);\n background: -moz-linear-gradient($deg, $args1, $args2);\n background: -o-linear-gradient($deg, $args1, $args2);\n background: -ms-linear-gradient($deg, $args1, $args2);\n background: linear-gradient($deg, $args1, $args2);\n}\n\n@mixin transform($transform) {\n -webkit-transform: $transform;\n -moz-transform: $transform;\n -ms-transform: $transform;\n -o-transform: $transform;\n transform: $transform;\n}\n\n@mixin animation($args) {\n -webkit-animation: $args;\n -moz-animation: $args;\n -o-animation: $args;\n animation: $args;\n}\n.sample-text-area {\n background: $white;\n padding: 100px 0 70px 0;\n}\n\n.text-heading {\n margin-bottom: 30px;\n font-size: 24px;\n}\n\nb,\nsup,\nsub,\nu,\ndel {\n color: $primary;\n}\n\nh1 {\n font-size: 36px;\n}\n\nh2 {\n font-size: 30px;\n}\n\nh3 {\n font-size: 24px;\n}\n\nh4 {\n font-size: 18px;\n}\n\nh5 {\n font-size: 16px;\n}\n\nh6 {\n font-size: 14px;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n line-height: 1.2em;\n}\n\n.typography {\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n color: $text-color;\n }\n}\n\n.button-area {\n .border-top-generic {\n padding: 70px 15px;\n border-top: 1px dotted #eee;\n }\n background: $white;\n}\n\n.button-group-area {\n .genric-btn {\n margin-right: 10px;\n margin-top: 10px;\n &:last-child {\n margin-right: 0;\n }\n }\n}\n\n.genric-btn {\n display: inline-block;\n outline: none;\n line-height: 40px;\n padding: 0 30px;\n font-size: .8em;\n text-align: center;\n text-decoration: none;\n font-weight: 500;\n cursor: pointer;\n @include transition();\n &:focus {\n outline: none;\n }\n &.e-large {\n padding: 0 40px;\n line-height: 50px;\n }\n &.large {\n line-height: 45px;\n }\n &.medium {\n line-height: 30px;\n }\n &.small {\n line-height: 25px;\n }\n &.radius {\n border-radius: 3px;\n }\n &.circle {\n border-radius: 20px;\n }\n &.arrow {\n display: -webkit-inline-box;\n display: -ms-inline-flexbox;\n display: inline-flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n span {\n margin-left: 10px;\n }\n }\n &.default {\n color: $title-color;\n background: $default;\n border: 1px solid transparent;\n &:hover {\n border: 1px solid $default;\n background: $white;\n }\n }\n &.default-border {\n border: 1px solid $default;\n background: $white;\n &:hover {\n color: $title-color;\n background: $default;\n border: 1px solid transparent;\n }\n }\n &.primary {\n color: $white;\n background: $primary;\n border: 1px solid transparent;\n &:hover {\n color: $primary;\n border: 1px solid $primary;\n background: $white;\n }\n }\n &.primary-border {\n color: $primary;\n border: 1px solid $primary;\n background: $white;\n &:hover {\n color: $white;\n background: $primary;\n border: 1px solid transparent;\n }\n }\n &.success {\n color: $white;\n background: $success;\n border: 1px solid transparent;\n &:hover {\n color: $success;\n border: 1px solid $success;\n background: $white;\n }\n }\n &.success-border {\n color: $success;\n border: 1px solid $success;\n background: $white;\n &:hover {\n color: $white;\n background: $success;\n border: 1px solid transparent;\n }\n }\n &.info {\n color: $white;\n background: $info;\n border: 1px solid transparent;\n &:hover {\n color: $info;\n border: 1px solid $info;\n background: $white;\n }\n }\n &.info-border {\n color: $info;\n border: 1px solid $info;\n background: $white;\n &:hover {\n color: $white;\n background: $info;\n border: 1px solid transparent;\n }\n }\n &.warning {\n color: $white;\n background: $warning;\n border: 1px solid transparent;\n &:hover {\n color: $warning;\n border: 1px solid $warning;\n background: $white;\n }\n }\n &.warning-border {\n color: $warning;\n border: 1px solid $warning;\n background: $white;\n &:hover {\n color: $white;\n background: $warning;\n border: 1px solid transparent;\n }\n }\n &.danger {\n color: $white;\n background: $danger;\n border: 1px solid transparent;\n &:hover {\n color: $danger;\n border: 1px solid $danger;\n background: $white;\n }\n }\n &.danger-border {\n color: $danger;\n border: 1px solid $danger;\n background: $white;\n &:hover {\n color: $white;\n background: $danger;\n border: 1px solid transparent;\n }\n }\n &.link {\n color: $title-color;\n background: $link;\n text-decoration: underline;\n border: 1px solid transparent;\n &:hover {\n color: $title-color;\n border: 1px solid $link;\n background: $white;\n }\n }\n &.link-border {\n color: $title-color;\n border: 1px solid $link;\n background: $white;\n text-decoration: underline;\n &:hover {\n color: $title-color;\n background: $link;\n border: 1px solid transparent;\n }\n }\n &.disable {\n color: $disable;\n background: $link;\n border: 1px solid transparent;\n cursor: not-allowed;\n }\n}\n\n.generic-blockquote {\n padding: 30px 50px 30px 30px;\n background: #f9f9ff;\n border-left: 2px solid $primary;\n}\n\n.progress-table-wrap {\n overflow-x: scroll;\n}\n\n.progress-table {\n background: #f9f9ff;\n padding: 15px 0px 30px 0px;\n min-width: 800px;\n .serial {\n width: 11.83%;\n padding-left: 30px;\n }\n .country {\n width: 28.07%;\n }\n .visit {\n width: 19.74%;\n }\n .percentage {\n width: 40.36%;\n padding-right: 50px;\n }\n .table-head {\n display: flex;\n .serial,\n .country,\n .visit,\n .percentage {\n color: $title-color;\n line-height: 40px;\n text-transform: uppercase;\n font-weight: 500;\n }\n }\n .table-row {\n padding: 15px 0;\n border-top: 1px solid #edf3fd;\n display: flex;\n .serial,\n .country,\n .visit,\n .percentage {\n display: flex;\n align-items: center;\n }\n .country {\n img {\n margin-right: 15px;\n }\n }\n .percentage {\n .progress {\n width: 80%;\n border-radius: 0px;\n background: transparent;\n .progress-bar {\n height: 5px;\n line-height: 5px;\n &.color-1 {\n background-color: #6382e6;\n }\n &.color-2 {\n background-color: #e66686;\n }\n &.color-3 {\n background-color: #f09359;\n }\n &.color-4 {\n background-color: #73fbaf;\n }\n &.color-5 {\n background-color: #73fbaf;\n }\n &.color-6 {\n background-color: #6382e6;\n }\n &.color-7 {\n background-color: #a367e7;\n }\n &.color-8 {\n background-color: #e66686;\n }\n }\n }\n }\n }\n}\n\n.single-gallery-image {\n margin-top: 30px;\n background-repeat: no-repeat !important;\n background-position: center center !important;\n background-size: cover !important;\n height: 200px;\n}\n\n.list-style {\n width: 14px;\n height: 14px;\n}\n\n.unordered-list {\n li {\n position: relative;\n padding-left: 30px;\n line-height: 1.82em !important;\n &:before {\n content: \"\";\n position: absolute;\n width: 14px;\n height: 14px;\n border: 3px solid $primary;\n background: $white;\n top: 4px;\n left: 0;\n border-radius: 50%;\n }\n }\n}\n\n.ordered-list {\n margin-left: 30px;\n li {\n list-style-type: decimal-leading-zero;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.ordered-list-alpha {\n li {\n margin-left: 30px;\n list-style-type: lower-alpha;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.ordered-list-roman {\n li {\n margin-left: 30px;\n list-style-type: lower-roman;\n color: $primary;\n font-weight: 500;\n line-height: 1.82em !important;\n span {\n font-weight: 300;\n color: $text-color;\n }\n }\n}\n\n.single-input {\n display: block;\n width: 100%;\n line-height: 40px;\n border: none;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n }\n}\n\n.input-group-icon {\n position: relative;\n .icon {\n position: absolute;\n left: 20px;\n top: 0;\n line-height: 40px;\n i {\n color: #797979;\n }\n z-index: 3;\n }\n .single-input {\n padding-left: 45px;\n }\n}\n\n.single-textarea {\n display: block;\n width: 100%;\n line-height: 40px;\n border: none;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n height: 100px;\n resize: none;\n &:focus {\n outline: none;\n }\n}\n\n.single-input-primary {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid $primary;\n }\n}\n\n.single-input-accent {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid #eb6b55;\n }\n}\n\n.single-input-secondary {\n display: block;\n width: 100%;\n line-height: 40px;\n border: 1px solid transparent;\n outline: none;\n background: #f9f9ff;\n padding: 0 20px;\n &:focus {\n outline: none;\n border: 1px solid #f09359;\n }\n}\n\n.default-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n +label {\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $primary;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n &:checked {\n +label {\n left: 19px;\n }\n }\n }\n}\n\n.primary-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n &:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n border-radius: 8.5px;\n cursor: pointer;\n @include transition (all .2s);\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $white;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n }\n &:checked {\n +label {\n &:after {\n left: 19px;\n }\n &:before {\n background: $primary;\n }\n }\n }\n }\n}\n\n.confirm-switch {\n width: 35px;\n height: 17px;\n border-radius: 8.5px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n &:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n border-radius: 8.5px;\n @include transition (all .2s);\n cursor: pointer;\n }\n &:after {\n content: \"\";\n position: absolute;\n top: 1px;\n left: 1px;\n width: 15px;\n height: 15px;\n border-radius: 50%;\n background: $white;\n @include transition (all .2s);\n box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);\n cursor: pointer;\n }\n }\n &:checked {\n +label {\n &:after {\n left: 19px;\n }\n &:before {\n background: $success;\n }\n }\n }\n }\n}\n\n.primary-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/primary-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.confirm-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/success-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.disabled-checkbox {\n width: 16px;\n height: 16px;\n border-radius: 3px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 3px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:disabled {\n cursor: not-allowed;\n z-index: 3;\n }\n &:checked {\n +label {\n background: url(../img/elements/disabled-check.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.primary-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/primary-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.confirm-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:checked {\n +label {\n background: url(../img/elements/success-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.disabled-radio {\n width: 16px;\n height: 16px;\n border-radius: 8px;\n background: #f9f9ff;\n position: relative;\n cursor: pointer;\n input {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n +label {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n width: 100%;\n height: 100%;\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid #f1f1f1;\n }\n &:disabled {\n cursor: not-allowed;\n z-index: 3;\n }\n &:checked {\n +label {\n background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;\n border: none;\n }\n }\n }\n}\n\n.default-select {\n height: 40px;\n .nice-select {\n border: none;\n border-radius: 0px;\n height: 40px;\n background: #f9f9ff;\n padding-left: 20px;\n padding-right: 40px;\n .list {\n margin-top: 0;\n border: none;\n border-radius: 0px;\n box-shadow: none;\n width: 100%;\n padding: 10px 0 10px 0px;\n .option {\n font-weight: 300;\n @include transition();\n line-height: 28px;\n min-height: 28px;\n font-size: 12px;\n padding-left: 20px;\n &.selected {\n color: $primary;\n background: transparent;\n }\n &:hover {\n color: $primary;\n background: transparent;\n }\n }\n }\n }\n .current {\n margin-right: 50px;\n font-weight: 300;\n }\n .nice-select::after {\n right: 20px;\n }\n}\n\n.form-select {\n height: 40px;\n width: 100%;\n .nice-select {\n border: none;\n border-radius: 0px;\n height: 40px;\n background: #f9f9ff;\n padding-left: 45px;\n padding-right: 40px;\n width: 100%;\n .list {\n margin-top: 0;\n border: none;\n border-radius: 0px;\n box-shadow: none;\n width: 100%;\n padding: 10px 0 10px 0px;\n .option {\n font-weight: 300;\n @include transition();\n line-height: 28px;\n min-height: 28px;\n font-size: 12px;\n padding-left: 45px;\n &.selected {\n color: $primary;\n background: transparent;\n }\n &:hover {\n color: $primary;\n background: transparent;\n }\n }\n }\n }\n .current {\n margin-right: 50px;\n font-weight: 300;\n }\n .nice-select::after {\n right: 20px;\n }\n}\n.mt-10 {\n margin-top: 10px;\n}\n.section-top-border {\n padding: 50px 0;\n border-top: 1px dotted #eee;\n}\n.mb-30 {\n margin-bottom: 30px;\n}\n.mt-30 {\n margin-top: 30px;\n}\n.switch-wrap {\n margin-bottom: 10px;\n}",
+ "/* Start Blog Area css\n============================================================================================ */\n\n.latest-blog-area {\n .area-heading {\n margin-bottom: 70px;\n }\n}\n.blog_area{\n a{\n color: $font_1 !important;\n text-decoration: none;\n @include transform_time(.5s);\n &:hover, :hover{\n background: -webkit-linear-gradient( 131deg, $btn_bg 0%, $btn_bg 99%);\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n text-decoration: none;\n @include transform_time(.5s);\n }\n }\n}\n\n.single-blog {\n overflow: hidden;\n margin-bottom: 30px;\n \n &:hover {\n box-shadow: 0px 10px 20px 0px rgba(42, 34, 123, 0.1);\n }\n\n .thumb {\n overflow: hidden;\n position: relative;\n\n &:after {\n content: '';\n position: absolute;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n background: #000;\n opacity: 0;\n @include transform_time(.5s);\n }\n }\n\n h4 {\n // @include transform_time(.5s);\n border-bottom: 1px solid #dfdfdf;\n padding-bottom: 34px;\n margin-bottom: 25px;\n }\n\n a {\n // color: $dip;\n font-size: 20px;\n font-weight: 600;\n\n &:hover {\n // // color: $baseColor;\n }\n }\n\n .date {\n color: #666666;\n text-align: left;\n display: inline-block;\n font-size: 13px;\n font-weight: 300;\n }\n\n .tag {\n // color: $baseColor;\n text-align: left;\n display: inline-block;\n float: left;\n font-size: 13px;\n font-weight: 300;\n margin-right: 22px;\n position: relative;\n\n &:after {\n content: '';\n position: absolute;\n width: 1px;\n height: 10px;\n background: #acacac;\n right: -12px;\n top: 7px;\n\n }\n\n @media(max-width:1199px) {\n margin-right: 8px;\n\n &:after {\n display: none;\n }\n }\n }\n\n .likes {\n margin-right: 16px;\n }\n\n @media(max-width:800px) {\n margin-bottom: 30px;\n }\n\n .single-blog-content {\n padding: 30px;\n\n .meta-bottom {\n p {\n font-size: 13px;\n font-weight: 300;\n }\n\n i {\n color: $border_color;\n font-size: 13px;\n margin-right: 7px;\n }\n }\n\n @media(max-width:1199px) {\n padding: 15px;\n }\n }\n\n &:hover {\n .thumb {\n &:after {\n opacity: .7;\n @include transform_time(.5s);\n }\n }\n }\n\n @media(max-width:1199px) {\n h4 {\n transition: all 300ms linear 0s;\n border-bottom: 1px solid #dfdfdf;\n padding-bottom: 14px;\n margin-bottom: 12px;\n\n a {\n font-size: 18px;\n }\n }\n }\n\n}\n\n.full_image.single-blog {\n position: relative;\n\n .single-blog-content {\n position: absolute;\n left: 35px;\n bottom: 0;\n opacity: 0;\n visibility: hidden;\n @include transform_time(.5s);\n\n .meta-bottom {\n p {\n // color: $white_color;\n }\n }\n\n @media (min-width: 992px) {\n bottom: 100px;\n }\n }\n\n h4 {\n @include transform_time(.5s);\n border-bottom: none;\n padding-bottom: 5px;\n }\n\n a {\n // color: $white_color;\n font-size: 20px;\n font-weight: 600;\n\n &:hover {\n // color: $baseColor;\n }\n }\n\n .date {\n color: #fff;\n }\n\n &:hover {\n .single-blog-content {\n opacity: 1;\n visibility: visible;\n @include transform_time(.5s);\n }\n }\n\n}\n\n/* End Blog Area css\n============================================================================================ */\n\n\n\n/* Latest Blog Area css\n============================================================================================ */\n.latest_blog_area {}\n\n.latest_blog_inner {}\n\n.l_blog_item {\n .l_blog_img {}\n\n .l_blog_text {\n .date {\n margin-top: 24px;\n margin-bottom: 15px;\n\n a {\n // color: $pfont;\n font-size: 12px;\n }\n }\n\n h4 {\n font-size: 18px;\n // color: $title-color;\n border-bottom: 1px solid #eeeeee;\n margin-bottom: 0px;\n padding-bottom: 20px;\n @include transform_time(.5s);\n\n &:hover {\n // // color: $baseColor;\n }\n }\n\n p {\n margin-bottom: 0px;\n padding-top: 20px;\n }\n }\n}\n\n/* End Latest Blog Area css\n============================================================================================ */\n\n\n/* Causes Area css\n============================================================================================ */\n.causes_area {}\n\n.causes_slider {\n .owl-dots {\n text-align: center;\n margin-top: 80px;\n\n .owl-dot {\n height: 14px;\n width: 14px;\n background: #eeeeee;\n display: inline-block;\n margin-right: 7px;\n\n &:last-child {\n margin-right: 0px;\n }\n\n &.active {\n // background: $baseColor;\n }\n }\n }\n}\n\n.causes_item {\n background: #fff;\n\n .causes_img {\n position: relative;\n\n .c_parcent {\n position: absolute;\n bottom: 0px;\n width: 100%;\n left: 0px;\n height: 3px;\n background: rgba(255, 255, 255, .5);\n\n span {\n width: 70%;\n height: 3px;\n // background: $title-color;\n position: absolute;\n left: 0px;\n bottom: 0px;\n\n &:before {\n content: \"75%\";\n position: absolute;\n right: -10px;\n bottom: 0px;\n // background: $title-color; \n color: #fff;\n padding: 0px 5px;\n }\n }\n }\n }\n\n .causes_text {\n padding: 30px 35px 40px 30px;\n\n h4 {\n // color: $title-color;\n // font-family: $rob;\n font-size: 18px;\n font-weight: 600;\n margin-bottom: 15px;\n cursor: pointer;\n\n &:hover {\n // // color: $title-color;\n }\n }\n\n p {\n font-size: 14px;\n line-height: 24px;\n // color: $pfont;\n font-weight: 300;\n margin-bottom: 0px;\n }\n }\n\n .causes_bottom {\n a {\n width: 50%;\n border: 1px solid;\n text-align: center;\n float: left;\n line-height: 50px;\n // background: $title-color;\n color: #fff;\n // font-family: $rob;\n font-size: 14px;\n font-weight: 500;\n\n &+a {\n border-color: #eeeeee;\n background: #fff;\n font-size: 14px;\n // color: $title-color;\n }\n }\n }\n}\n\n/* End Causes Area css\n============================================================================================ */\n\n\n\n/*================= latest_blog_area css =============*/\n.latest_blog_area {\n background: #f9f9ff;\n}\n\n.single-recent-blog-post {\n margin-bottom: 30px;\n\n .thumb {\n overflow: hidden;\n\n img {\n transition: all 0.7s linear;\n }\n }\n\n .details {\n padding-top: 30px;\n\n .sec_h4 {\n line-height: 24px;\n padding: 10px 0px 13px;\n transition: all 0.3s linear;\n\n &:hover {\n // color: $pfont;\n }\n }\n }\n\n .date {\n font-size: 14px;\n line-height: 24px;\n font-weight: 400;\n }\n\n &:hover {\n img {\n transform: scale(1.23) rotate(10deg);\n }\n }\n}\n\n.tags {\n .tag_btn {\n font-size: 12px;\n font-weight: 500;\n line-height: 20px;\n border: 1px solid #eeeeee;\n display: inline-block;\n padding: 1px 18px;\n text-align: center;\n\n // color: $title-color;\n &:before {\n // background: $title-color;\n }\n\n &+.tag_btn {\n margin-left: 2px;\n }\n }\n}\n\n/*========= blog_categorie_area css ===========*/\n.blog_categorie_area {\n padding-top: 30px;\n padding-bottom: 30px;\n // background: $lightGray;\n\n @media(min-width: 900px) {\n padding-top: 80px;\n padding-bottom: 80px;\n }\n\n @media(min-width: 1100px) {\n padding-top: 120px;\n padding-bottom: 120px;\n }\n}\n\n.categories_post {\n position: relative;\n text-align: center;\n cursor: pointer;\n\n img {\n max-width: 100%;\n }\n\n .categories_details {\n position: absolute;\n top: 20px;\n left: 20px;\n right: 20px;\n bottom: 20px;\n background: rgba(34, 34, 34, 0.75);\n color: #fff;\n transition: all 0.3s linear;\n display: flex;\n align-items: center;\n justify-content: center;\n\n h5 {\n margin-bottom: 0px;\n font-size: 18px;\n line-height: 26px;\n text-transform: uppercase;\n color: #fff;\n position: relative;\n // &:before{\n // content: \"\";\n // height: 1px;\n // width: 100%;\n // background: #fff;\n // position: absolute;\n // bottom: 0px;\n // left: 0px;\n // }\n }\n\n p {\n font-weight: 300;\n font-size: 14px;\n line-height: 26px;\n margin-bottom: 0px;\n }\n\n .border_line {\n margin: 10px 0px;\n background: #fff;\n width: 100%;\n height: 1px;\n }\n }\n\n &:hover {\n .categories_details {\n background: rgba(222, 99, 32, 0.85);\n }\n }\n}\n\n\n\n/*============ blog_left_sidebar css ==============*/\n.blog_area {\n // background: $lightGray;\n}\n\n.blog_left_sidebar {}\n\n.blog_item {\n margin-bottom: 50px;\n}\n\n.blog_details {\n padding: 30px 0 20px 10px;\n box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3);\n\n @media(min-width: 768px) {\n padding: 60px 30px 35px 35px;\n }\n\n p {\n margin-bottom: 30px;\n }\n\n a {\n color: $heading_color2;\n\n &:hover {\n color: $btn_bg;\n }\n }\n\n h2 {\n font-size: 18px;\n font-weight: 600;\n margin-bottom: 8px;\n\n @media(min-width: 768px) {\n font-size: 24px;\n margin-bottom: 15px;\n }\n }\n}\n\n.blog-info-link {\n\n li {\n float: left;\n font-size: 14px;\n\n a {\n color: #999999;\n }\n\n i,\n span {\n font-size: 13px;\n margin-right: 5px;\n }\n\n &::after {\n content: \"|\";\n padding-left: 10px;\n padding-right: 10px;\n }\n\n &:last-child::after {\n display: none;\n }\n }\n\n &::after {\n content: \"\";\n display: block;\n clear: both;\n display: table;\n }\n}\n\n.blog_item_img {\n position: relative;\n\n .blog_item_date {\n position: absolute;\n bottom: -10px;\n left: 10px;\n display: block;\n color: $white_color;\n background-color: $btn_bg;\n padding: 8px 15px;\n border-radius: 5px;\n\n @media(min-width: 768px) {\n bottom: -20px;\n left: 40px;\n padding: 13px 30px;\n }\n\n h3 {\n font-size: 22px;\n font-weight: 600;\n color: $white_color;\n margin-bottom: 0;\n line-height: 1.2;\n\n @media(min-width: 768px) {\n font-size: 30px;\n }\n }\n\n p {\n font-size: 18px;\n margin-bottom: 0;\n color: $white_color;\n\n @media(min-width: 768px) {\n font-size: 18px;\n }\n }\n }\n}\n\n\n\n\n.blog_right_sidebar {\n\n // border: 1px solid #eeeeee;\n // background: #fafaff;\n // padding: 30px;\n .widget_title {\n font-size: 20px;\n margin-bottom: 40px;\n // color: $title-color;\n\n &::after {\n content: \"\";\n display: block;\n padding-top: 15px;\n border-bottom: 1px solid #f0e9ff;\n }\n }\n\n .single_sidebar_widget {\n background: #fbf9ff;\n padding: 30px;\n margin-bottom: 30px;\n .btn_1{\n margin-top: 0px;\n }\n }\n\n\n .search_widget {\n\n .form-control {\n height: 50px;\n border-color: #f0e9ff;\n font-size: 13px;\n color: #999999;\n padding-left: 20px;\n border-radius: 0;\n border-right: 0;\n\n &::placeholder {\n color: #999999;\n }\n\n &:focus {\n border-color: #f0e9ff;\n outline: 0;\n box-shadow: none;\n }\n }\n\n .input-group {\n\n button {\n background: $white_color;\n border-left: 0;\n border: 1px solid #f0e9ff;\n padding: 4px 15px;\n border-left: 0;\n\n i,\n span {\n font-size: 14px;\n color: #999999;\n }\n }\n }\n\n }\n\n .newsletter_widget {\n\n .form-control {\n height: 50px;\n border-color: #f0e9ff;\n font-size: 13px;\n color: #999999;\n padding-left: 20px;\n border-radius: 0;\n // border-right: 0;\n\n &::placeholder {\n color: #999999;\n }\n\n &:focus {\n border-color: #f0e9ff;\n outline: 0;\n box-shadow: none;\n }\n }\n\n .input-group {\n\n button {\n background: $white_color;\n border-left: 0;\n border: 1px solid #f0e9ff;\n padding: 4px 15px;\n border-left: 0;\n\n i,\n span {\n font-size: 14px;\n color: #999999;\n }\n }\n }\n\n }\n\n\n .post_category_widget {\n .cat-list {\n li {\n border-bottom: 1px solid #f0e9ff;\n transition: all 0.3s ease 0s;\n padding-bottom: 12px;\n\n &:last-child {\n border-bottom: 0;\n }\n\n a {\n font-size: 14px;\n line-height: 20px;\n color: #888888;\n\n p {\n margin-bottom: 0px;\n }\n }\n\n &+li {\n padding-top: 15px;\n }\n\n &:hover {\n\n // border-// color: $title-color;\n a {\n // // color: $baseColor;\n }\n }\n }\n }\n }\n\n .popular_post_widget {\n .post_item {\n .media-body {\n justify-content: center;\n align-self: center;\n padding-left: 20px;\n\n h3 {\n font-size: 16px;\n line-height: 20px;\n margin-bottom: 6px;\n transition: all 0.3s linear;\n\n }\n\n a {\n\n // color: $title_color;\n &:hover {\n color: $white_color;\n }\n\n }\n\n p {\n font-size: 14px;\n line-height: 21px;\n margin-bottom: 0px;\n }\n }\n\n &+.post_item {\n margin-top: 20px;\n }\n }\n }\n\n .tag_cloud_widget {\n ul {\n li {\n display: inline-block;\n \n a {\n display: inline-block;\n border: 1px solid #eeeeee;\n background: #fff;\n padding: 4px 20px;\n margin-bottom: 8px;\n margin-right: 3px;\n transition: all 0.3s ease 0s;\n color: #888888;\n font-size: 13px;\n\n &:hover {\n background: $btn_bg;\n color: #fff !important;\n -webkit-text-fill-color: #fff;\n text-decoration: none;\n -webkit-transition: 0.5s;\n transition: 0.5s;\n }\n }\n }\n }\n }\n\n .instagram_feeds {\n\n .instagram_row {\n display: flex;\n margin-right: -6px;\n margin-left: -6px;\n\n\n li {\n width: 33.33%;\n float: left;\n padding-right: 6px;\n padding-left: 6px;\n margin-bottom: 15px;\n }\n }\n }\n\n\n\n\n\n\n\n // .author_widget{\n // text-align: center;\n // h4{\n // font-size: 18px;\n // line-height: 20px;\n // // color: $title-color;\n // margin-bottom: 5px;\n // margin-top: 30px;\n // }\n // p{\n // margin-bottom: 0px;\n // }\n // .social_icon{\n // padding: 7px 0px 15px;\n // a{\n // font-size: 14px;\n // // color: $title-color;\n // transition: all 0.2s linear;\n // & + a{\n // margin-left: 20px;\n // }\n // &:hover{\n // // color: $title-color;\n // }\n // }\n // }\n // }\n\n\n // .newsletter_widget{\n // text-align: center;\n // p{\n\n // }\n // .form-group{\n // margin-bottom: 8px;\n // }\n // .input-group-prepend {\n // margin-right: -1px;\n // }\n // .input-group-text {\n // background: #fff;\n // border-radius: 0px;\n // vertical-align: top;\n // font-size: 12px;\n // line-height: 36px;\n // padding: 0px 0px 0px 15px;\n // border: 1px solid #eeeeee;\n // border-right: 0px;\n\n // i{\n // color: #cccccc;\n // }\n // }\n // .form-control{\n // font-size: 12px;\n // line-height: 24px;\n // color: #cccccc;\n // border: 1px solid #eeeeee;\n // border-left: 0px;\n // border-radius: 0px;\n // @include placeholder{\n // color: #cccccc;\n // }\n // &:focus{\n // outline: none;\n // box-shadow: none;\n // }\n // }\n // .bbtns{\n // background: $title-color;\n // color: #fff;\n // font-size: 12px;\n // line-height: 38px;\n // display: inline-block;\n // font-weight: 500;\n // padding: 0px 24px 0px 24px;\n // border-radius: 0;\n // }\n // .text-bottom{\n // font-size: 12px;\n // }\n // }\n\n .br {\n width: 100%;\n height: 1px;\n background: rgb(238, 238, 238);\n margin: 30px 0px;\n }\n}\n\n\n// .page-link {\n// background: transparent;\n// font-weight: 400;\n// }\n\n// .blog-pagination .page-item.active .page-link {\n// background-// color: $title-color;\n// border-color: transparent;\n// color:#fff;\n// }\n\n\n.blog-pagination {\n margin-top: 80px;\n}\n\n.blog-pagination .page-link {\n font-size: 14px;\n position: relative;\n display: block;\n padding: 0;\n text-align: center;\n // padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 45px;\n width: 45px;\n height: 45px;\n border-radius: 0 !important;\n color: #8a8a8a;\n border: 1px solid #f0e9ff;\n margin-right: 10px;\n\n\n i,\n span {\n font-size: 13px;\n }\n\n &:hover {\n // background-color: $baseColor;\n // color: $white_color;\n }\n}\n\n.blog-pagination .page-item.active {\n .page-link {\n background-color: #fbf9ff;\n border-color: #f0e9ff;\n color: #888888;\n }\n}\n\n.blog-pagination .page-item:last-child .page-link {\n margin-right: 0;\n}\n\n// .blog-pagination .page-link .lnr {\n// font-weight: 600;\n// }\n\n// .blog-pagination .page-item:last-child .page-link,\n// .blog-pagination .page-item:first-child .page-link {\n// border-radius: 0;\n// }\n\n// .blog-pagination .page-link:hover {\n// color: #fff;\n// text-decoration: none;\n// background-// color: $title-color;\n// border-color: #eee;\n// }\n\n\n\n/*============ Start Blog Single Styles =============*/\n\n.single-post-area {\n .blog_details {\n box-shadow: none;\n padding: 0;\n }\n\n .social-links {\n padding-top: 10px;\n\n li {\n display: inline-block;\n margin-bottom: 10px;\n\n a {\n color: #cccccc;\n padding: 7px;\n font-size: 14px;\n transition: all 0.2s linear;\n\n &:hover {\n // color: $title-color;\n }\n }\n }\n }\n\n .blog_details {\n padding-top: 26px;\n\n p {\n margin-bottom: 20px;\n font-size: 15px;\n }\n\n h2 {\n // color: $title-color;\n }\n }\n\n .quote-wrapper {\n background: rgba(130, 139, 178, 0.1);\n padding: 15px;\n line-height: 1.733;\n color: #888888;\n font-style: italic;\n margin-top: 25px;\n margin-bottom: 25px;\n\n @media(min-width: 768px) {\n padding: 30px;\n }\n }\n\n .quotes {\n background: $white_color;\n padding: 15px 15px 15px 20px;\n border-left: 2px solid;\n\n @media(min-width: 768px) {\n padding: 25px 25px 25px 30px;\n }\n }\n\n .arrow {\n position: absolute;\n\n .lnr {\n font-size: 20px;\n font-weight: 600;\n }\n }\n\n .thumb {\n .overlay-bg {\n background: rgba(#000, .8);\n }\n }\n\n .navigation-top {\n padding-top: 15px;\n border-top: 1px solid #f0e9ff;\n\n p {\n margin-bottom: 0;\n }\n\n .like-info {\n font-size: 14px;\n\n i,\n span {\n font-size: 16px;\n margin-right: 5px;\n }\n }\n\n .comment-count {\n font-size: 14px;\n\n i,\n span {\n font-size: 16px;\n margin-right: 5px;\n }\n }\n\n .social-icons {\n\n li {\n display: inline-block;\n margin-right: 15px;\n\n &:last-child {\n margin: 0;\n }\n\n i,\n span {\n font-size: 14px;\n color: #999999;\n }\n\n &:hover {\n\n i,\n span {\n // // color: $baseColor;\n }\n }\n }\n }\n }\n\n\n .blog-author {\n padding: 40px 30px;\n background: #fbf9ff;\n margin-top: 50px;\n\n @media(max-width: 600px) {\n padding: 20px 8px;\n }\n\n img {\n width: 90px;\n height: 90px;\n border-radius: 50%;\n margin-right: 30px;\n\n @media(max-width: 600px) {\n margin-right: 15px;\n width: 45px;\n height: 45px;\n }\n }\n\n a {\n display: inline-block;\n\n // color: $title-color;\n &:hover {\n color: $btn_bg;\n }\n }\n\n p {\n margin-bottom: 0;\n font-size: 15px;\n }\n\n h4 {\n font-size: 16px;\n }\n }\n\n\n\n .navigation-area {\n border-bottom: 1px solid #eee;\n padding-bottom: 30px;\n margin-top: 55px;\n\n p {\n margin-bottom: 0px;\n }\n\n h4 {\n font-size: 18px;\n line-height: 25px;\n // color: $title-color;\n }\n\n .nav-left {\n text-align: left;\n\n .thumb {\n margin-right: 20px;\n background: #000;\n\n img {\n @include transform_time(.5s);\n }\n }\n\n .lnr {\n margin-left: 20px;\n opacity: 0;\n @include transform_time(.5s);\n }\n\n &:hover {\n .lnr {\n opacity: 1;\n }\n\n .thumb {\n img {\n opacity: .5;\n }\n }\n }\n\n @media(max-width:767px) {\n margin-bottom: 30px;\n }\n }\n\n .nav-right {\n text-align: right;\n\n .thumb {\n margin-left: 20px;\n background: #000;\n\n img {\n @include transform_time(.5s);\n }\n }\n\n .lnr {\n margin-right: 20px;\n opacity: 0;\n @include transform_time(.5s);\n }\n\n &:hover {\n .lnr {\n opacity: 1;\n }\n\n .thumb {\n img {\n opacity: .5;\n }\n }\n }\n }\n }\n\n .sidebar-widgets {\n @media(max-width: 991px) {\n padding-bottom: 0px;\n }\n }\n}\n\n.comments-area {\n background: transparent;\n // border: 1px solid #eee;\n border-top: 1px solid #eee;\n padding: 45px 0;\n margin-top: 50px;\n\n @media(max-width: 414px) {\n padding: 50px 8px;\n }\n\n h4 {\n // text-align: center;\n margin-bottom: 35px;\n // color: $title-color;\n font-size: 18px;\n }\n\n h5 {\n font-size: 16px;\n margin-bottom: 0px;\n }\n\n a {\n // color: $title-color;\n }\n\n .comment-list {\n padding-bottom: 48px;\n\n &:last-child {\n padding-bottom: 0px;\n }\n\n &.left-padding {\n padding-left: 25px;\n }\n\n @media(max-width:413px) {\n .single-comment {\n h5 {\n font-size: 12px;\n }\n\n .date {\n font-size: 11px;\n }\n\n .comment {\n font-size: 10px;\n }\n }\n }\n }\n\n .thumb {\n margin-right: 20px;\n\n img {\n width: 70px;\n border-radius: 50%;\n }\n }\n\n .date {\n font-size: 14px;\n color: #999999;\n margin-bottom: 0;\n margin-left: 20px;\n }\n\n .comment {\n margin-bottom: 10px;\n color: #777777;\n font-size: 15px;\n }\n\n .btn-reply {\n background-color: transparent;\n color: #888888;\n // border:1px solid #eee;\n padding: 5px 18px;\n font-size: 14px;\n display: block;\n font-weight: 400;\n // @include transform_time(.5s);\n // &:hover {\n // background-// color: $title-color;\n // color: #fff;\n // font-weight: 700;\n // }\n }\n}\n\n.comment-form {\n // background:#fafaff;\n // text-align: center;\n border-top: 1px solid #eee;\n padding-top: 45px;\n margin-top: 50px;\n margin-bottom: 20px;\n\n .form-group {\n margin-bottom: 30px;\n }\n\n h4 {\n // text-align: center;\n margin-bottom: 40px;\n font-size: 18px;\n line-height: 22px;\n // color: $title-color;\n }\n\n .name {\n padding-left: 0px;\n\n @media(max-width: 767px) {\n padding-right: 0px;\n margin-bottom: 1rem;\n }\n }\n\n .email {\n padding-right: 0px;\n\n @media(max-width: 991px) {\n padding-left: 0px;\n }\n }\n\n .form-control {\n border: 1px solid #f0e9ff;\n border-radius: 5px;\n height: 48px;\n padding-left: 18px;\n font-size: 13px;\n background: transparent;\n\n &:focus {\n outline: 0;\n box-shadow: none;\n }\n\n &::placeholder {\n font-weight: 300;\n color: #999999;\n }\n\n &::placeholder {\n color: #777777;\n }\n }\n\n textarea {\n padding-top: 18px;\n border-radius: 12px;\n height: 100% !important;\n }\n\n ::-webkit-input-placeholder {\n /* Chrome/Opera/Safari */\n font-size: 13px;\n color: #777;\n }\n\n ::-moz-placeholder {\n /* Firefox 19+ */\n font-size: 13px;\n color: #777;\n }\n\n :-ms-input-placeholder {\n /* IE 10+ */\n font-size: 13px;\n color: #777;\n }\n\n :-moz-placeholder {\n /* Firefox 18- */\n font-size: 13px;\n color: #777;\n }\n}\n\n\n\n/*============ End Blog Single Styles =============*/",
+ "/**************** blog part css start ****************/\r\n.blog_part{\r\n margin-bottom: 140px;\r\n @media #{$small_mobile}{\r\n margin-bottom: 0px;\r\n padding: 0px 0px 70px;\r\n }\r\n @media #{$large_mobile}{\r\n margin-bottom: 0px;\r\n padding: 0px 0px 70px;\r\n }\r\n @media #{$tab_device}{\r\n margin-bottom: 0px;\r\n padding: 0px 0px 70px;\r\n }\r\n @media #{$medium_device}{\r\n \r\n }\r\n .blog_right_sidebar .widget_title {\r\n font-size: 20px;\r\n margin-bottom: 40px;\r\n font-style: inherit !important; \r\n }\r\n .single-home-blog{\r\n @media #{$small_mobile}{\r\n margin-bottom: 140px;\r\n margin-top: 20px;\r\n }\r\n @media #{$large_mobile}{\r\n margin-bottom: 140px;\r\n margin-top: 20px;\r\n }\r\n @media #{$tab_device}{\r\n margin-bottom: 140px;\r\n margin-top: 20px;\r\n }\r\n @media #{$medium_device}{\r\n \r\n }\r\n .card-img-top{\r\n border-radius: 0px;\r\n }\r\n .card{\r\n border: 0px solid transparent;\r\n border-radius: 0px;\r\n background-color: transparent;\r\n position: relative;\r\n .card-body{\r\n padding: 25px 10px 29px 40px;\r\n background-color: $white_color;\r\n position: absolute;\r\n left: 20px;\r\n bottom: -140px;\r\n box-shadow: -7.552px 9.326px 20px 0px rgba(1, 84, 85, 0.1);\r\n border-radius: 10px;\r\n @media #{$small_mobile}{\r\n padding: 15px;\r\n left: 10px;\r\n bottom: -140px;\r\n }\r\n @media #{$large_mobile}{\r\n padding: 15px;\r\n left: 10px;\r\n bottom: -140px;\r\n }\r\n @media #{$tab_device}{\r\n \r\n }\r\n @media #{$medium_device}{\r\n padding: 20px;\r\n }\r\n a{\r\n color: $btn_bg;\r\n text-transform: uppercase;\r\n @include transform_time(0.8s);\r\n &:hover{\r\n background: -webkit-linear-gradient( 131deg, #ff7e5f 0%, #feb47b 99%);\r\n -webkit-background-clip: text;\r\n -webkit-text-fill-color: transparent;\r\n }\r\n }\r\n }\r\n .dot{\r\n position: relative;\r\n padding-left: 20px;\r\n &:after{\r\n position: absolute;\r\n content: \"\";\r\n width: 10px;\r\n height: 10px;\r\n top: 5px;\r\n left: 0;\r\n background-color: $btn_bg;\r\n border-radius: 50%;\r\n }\r\n }\r\n span{\r\n color: $font_4;\r\n margin-bottom: 10px;\r\n display: inline-block;\r\n margin-top: 10px;\r\n @media #{$small_mobile}{\r\n margin-bottom: 5px;\r\n margin-top: 5px;\r\n }\r\n @media #{$large_mobile}{\r\n margin-bottom: 5px;\r\n margin-top: 5px;\r\n }\r\n @media #{$tab_device}{\r\n margin-bottom: 5px;\r\n margin-top: 5px;\r\n }\r\n @media #{$medium_device}{\r\n margin-bottom: 5px;\r\n margin-top: 5px;\r\n }\r\n }\r\n h5{\r\n font-weight: 600;\r\n line-height: 1.5;\r\n font-size: 20px;\r\n @include transform_time(0.8s);\r\n text-transform: capitalize;\r\n margin-bottom: 22px;\r\n @media #{$small_mobile}{\r\n margin-bottom: 10px;\r\n }\r\n @media #{$large_mobile}{\r\n margin-bottom: 10px;\r\n font-size: 16px;\r\n }\r\n @media #{$tab_device}{\r\n margin-bottom: 10px;\r\n }\r\n @media #{$medium_device}{\r\n margin-bottom: 10px;\r\n font-size: 18px;\r\n }\r\n &:hover{\r\n @include transform_time(0.8s);\r\n background: -webkit-linear-gradient( 131deg, #feb47b 0%, #ff7e5f 99%);\r\n -webkit-background-clip: text;\r\n -webkit-text-fill-color: transparent;\r\n -webkit-animation: 1s;\r\n }\r\n \r\n }\r\n ul{\r\n li{\r\n display: inline-block;\r\n color: $font_4;\r\n margin-right: 14px;\r\n @media #{$small_mobile}{\r\n margin-right: 10px;\r\n }\r\n @media #{$large_mobile}{\r\n margin-right: 10px;\r\n }\r\n @media #{$tab_device}{\r\n margin-right: 10px;\r\n }\r\n @media #{$medium_device}{\r\n margin-right: 10px;\r\n }\r\n span{\r\n margin-right: 10px;\r\n font-size: 12px;\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n\r\n "
+ ],
+ "names": [],
+ "mappings": "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"
+} \ No newline at end of file
diff --git a/src/main/resources/static/css/theme-default.css b/src/main/resources/static/css/theme-default.css
new file mode 100644
index 0000000..babeed1
--- /dev/null
+++ b/src/main/resources/static/css/theme-default.css
@@ -0,0 +1,303 @@
+/* 1. Theme default css */
+@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900|Roboto:100,100i,300,400,400i,500,500i,700,900&display=swap");
+/* line 4, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+body {
+ font-family: 'Raleway', sans-serif;
+ font-weight: normal;
+ font-style: normal;
+}
+
+/* line 13, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.img {
+ max-width: 100%;
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 17, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+a,
+.button {
+ -webkit-transition: 0.3s;
+ -moz-transition: 0.3s;
+ -o-transition: 0.3s;
+ transition: 0.3s;
+}
+
+/* line 21, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+a:focus,
+.button:focus, button:focus {
+ text-decoration: none;
+ outline: none;
+}
+
+/* line 26, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+a:focus {
+ color: #fff;
+ text-decoration: none;
+}
+
+/* line 30, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+a:focus,
+a:hover,
+.portfolio-cat a:hover,
+.footer -menu li a:hover {
+ text-decoration: none;
+ color: #1F1F1F;
+}
+
+/* line 37, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+a,
+button {
+ color: #1F1F1F;
+ outline: medium none;
+}
+
+/* line 42, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+h1, h2, h3, h4, h5 {
+ font-family: 'Playfair Display', serif;
+ color: #1F1F1F;
+}
+
+/* line 46, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+h1 a,
+h2 a,
+h3 a,
+h4 a,
+h5 a,
+h6 a {
+ color: inherit;
+}
+
+/* line 55, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+ul {
+ margin: 0px;
+ padding: 0px;
+}
+
+/* line 59, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+li {
+ list-style: none;
+}
+
+/* line 62, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+p {
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 28px;
+ color: #4D4D4D;
+ margin-bottom: 13px;
+ font-family: 'Raleway', sans-serif;
+}
+
+/* line 71, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+label {
+ color: #7e7e7e;
+ cursor: pointer;
+ font-size: 14px;
+ font-weight: 400;
+}
+
+/* line 77, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+*::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 82, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+::-moz-selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 87, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+::selection {
+ background: #444;
+ color: #fff;
+ text-shadow: none;
+}
+
+/* line 92, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+*::-webkit-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 97, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+*:-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 102, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+*::-ms-input-placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 107, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+*::placeholder {
+ color: #cccccc;
+ font-size: 14px;
+ opacity: 1;
+}
+
+/* line 113, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+h3 {
+ font-size: 24px;
+}
+
+/* line 117, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.mb-65 {
+ margin-bottom: 67px;
+}
+
+/* line 121, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.black-bg {
+ background: #020c26 !important;
+}
+
+/* line 125, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.white-bg {
+ background: #ffffff;
+}
+
+/* line 128, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.gray-bg {
+ background: #f5f5f5;
+}
+
+/* line 133, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.bg-img-1 {
+ background-image: url(../img/slider/slider-img-1.jpg);
+}
+
+/* line 136, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.bg-img-2 {
+ background-image: url(../img/background-img/bg-img-2.jpg);
+}
+
+/* line 139, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.cta-bg-1 {
+ background-image: url(../img/background-img/bg-img-3.jpg);
+}
+
+/* line 144, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.overlay {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 148, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.overlay::before {
+ position: absolute;
+ content: "";
+ background-color: #1f1f1f;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+ opacity: .5;
+}
+
+/* line 160, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.overlay2 {
+ position: relative;
+ z-index: 0;
+}
+
+/* line 164, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.overlay2::before {
+ position: absolute;
+ content: "";
+ background-color: #131313;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+ opacity: 0.2;
+}
+
+/* line 176, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.section-padding {
+ padding-top: 120px;
+ padding-bottom: 120px;
+}
+
+/* line 180, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.pt-120 {
+ padding-top: 120px;
+}
+
+/* button style */
+/* line 186, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel .owl-nav div {
+ background: transparent;
+ height: 54px;
+ left: 0px;
+ line-height: 54px;
+ position: absolute;
+ text-align: center;
+ top: 50%;
+ -webkit-transform: translateY(-50%);
+ -ms-transform: translateY(-50%);
+ transform: translateY(-50%);
+ -webkit-transition: all 0.3s ease 0s;
+ -o-transition: all 0.3s ease 0s;
+ transition: all 0.3s ease 0s;
+ width: 54px;
+ font-size: 25px;
+ color: #fff;
+ background-color: rgba(255, 255, 255, 0.2);
+ border-radius: 50%;
+ left: 50px;
+ font-size: 18px;
+ line-height: 54px;
+}
+
+/* line 213, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel .owl-nav div.owl-next {
+ left: auto;
+ right: 50px;
+}
+
+/* line 218, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel .owl-nav div.owl-next i {
+ position: relative;
+ right: 0;
+ top: 1px;
+}
+
+/* line 225, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel .owl-nav div.owl-prev i {
+ position: relative;
+ right: 1px;
+ top: 0px;
+}
+
+/* line 235, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel:hover .owl-nav div {
+ opacity: 1;
+ visibility: visible;
+}
+
+/* line 238, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.owl-carousel:hover .owl-nav div:hover {
+ color: #fff;
+ background: #009DFF;
+}
+
+/* line 247, ../../Arafath/CL/CL september/205. Barber/HTML/scss/theme-default.scss */
+.mb-20px {
+ margin-bottom: 20px;
+}
+
+/*# sourceMappingURL=theme-default.css.map */ \ No newline at end of file
diff --git a/src/main/resources/static/css/theme-default.map b/src/main/resources/static/css/theme-default.map
new file mode 100644
index 0000000..b09a58a
--- /dev/null
+++ b/src/main/resources/static/css/theme-default.map
@@ -0,0 +1,14 @@
+{
+ "version": 3,
+ "file": "theme-default.css",
+ "sources": [
+ "../scss/theme-default.scss",
+ "../scss/_mixins.scss"
+ ],
+ "sourcesContent": [
+ "\r\n/* 1. Theme default css */\r\n@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900|Roboto:100,100i,300,400,400i,500,500i,700,900&display=swap');\r\nbody {\r\n\tfont-family: 'Raleway', sans-serif;\r\n\tfont-weight: normal;\r\n font-style: normal;\r\n \r\n}\r\n\r\n\r\n@import 'mixins.scss';\r\n.img {\r\n\tmax-width: 100%;\r\n\t@include transition(.3s);\r\n}\r\na,\r\n.button {\r\n@include transition(.3s);\r\n}\r\na:focus,\r\n.button:focus,button:focus {\r\n\ttext-decoration: none;\r\n\toutline: none;\r\n}\r\na:focus{\r\n\tcolor: #fff;\r\n\ttext-decoration: none;\r\n}\r\na:focus,\r\na:hover,\r\n.portfolio-cat a:hover,\r\n.footer -menu li a:hover {\r\n\ttext-decoration: none;\r\n\tcolor: #1F1F1F;\r\n}\r\na,\r\nbutton {\r\n\tcolor: #1F1F1F;\r\n\toutline: medium none;\r\n}\r\nh1,h2,h3,h4,h5{\r\n\tfont-family: 'Playfair Display', serif;\r\n\tcolor: #1F1F1F;\r\n}\r\nh1 a,\r\nh2 a,\r\nh3 a,\r\nh4 a,\r\nh5 a,\r\nh6 a {\r\n\tcolor: inherit;\r\n}\r\n\r\nul {\r\n\tmargin: 0px;\r\n\tpadding: 0px;\r\n}\r\nli {\r\n\tlist-style: none\r\n}\r\np {\r\n\tfont-size: 16px;\r\n\tfont-weight:300;\r\n\tline-height: 28px;\r\n\tcolor: #4D4D4D;\r\n\tmargin-bottom: 13px;\r\n\tfont-family: 'Raleway', sans-serif;\r\n}\r\n\r\nlabel {\r\n\tcolor: #7e7e7e;\r\n\tcursor: pointer;\r\n\tfont-size: 14px;\r\n\tfont-weight: 400;\r\n}\r\n*::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::-moz-selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n::selection {\r\n\tbackground: #444;\r\n\tcolor: #fff;\r\n\ttext-shadow: none;\r\n}\r\n*::-webkit-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*:-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::-ms-input-placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n*::placeholder {\r\n\tcolor: #cccccc;\r\n\tfont-size: 14px;\r\n\topacity: 1;\r\n}\r\n\r\nh3{\r\n\tfont-size: 24px;\r\n}\r\n\r\n.mb-65{\r\n\tmargin-bottom: 67px;\r\n}\r\n// default-bg-color\r\n.black-bg{\r\n\tbackground: #020c26 !important;\r\n}\r\n\r\n.white-bg{\r\n\tbackground: #ffffff;\r\n}\r\n.gray-bg{\r\n\tbackground: #f5f5f5;\r\n}\r\n\r\n// background-image\r\n.bg-img-1{\r\n background-image: url(../img/slider/slider-img-1.jpg);\r\n}\r\n.bg-img-2{\r\n background-image: url(../img/background-img/bg-img-2.jpg);\r\n}\r\n.cta-bg-1{\r\n background-image: url(../img/background-img/bg-img-3.jpg);\r\n\r\n}\r\n\r\n.overlay{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #1f1f1f;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: .5;\r\n}\r\n\r\n.overlay2{\r\n\tposition: relative;\r\n\tz-index: 0;\r\n}\r\n.overlay2::before{\r\n\tposition: absolute;\r\n\tcontent: \"\";\r\n\tbackground-color: #131313;\r\n\ttop: 0;\r\n\tleft: 0;\r\n\twidth: 100%;\r\n\theight: 100%;\r\n\tz-index: -1;\r\n\topacity: 0.2;\r\n}\r\n\r\n.section-padding{\r\n\tpadding-top: 120px;\r\n\tpadding-bottom: 120px;\r\n}\r\n.pt-120{\r\n\tpadding-top: 120px;\r\n}\r\n\r\n/* button style */\r\n.owl-carousel {\r\n\t.owl-nav div {\r\n\t\tbackground: transparent;\r\n\t\theight: 54px;\r\n\t\tleft: 0px;\r\n\t\tline-height: 54px;\r\n\t\t// opacity: 0;\r\n\t\tposition: absolute;\r\n\t\ttext-align: center;\r\n\t\ttop: 50%;\r\n\t\t-webkit-transform: translateY(-50%);\r\n\t\t\t-ms-transform: translateY(-50%);\r\n\t\t\t\ttransform: translateY(-50%);\r\n\t\t-webkit-transition: all 0.3s ease 0s;\r\n\t\t-o-transition: all 0.3s ease 0s;\r\n\t\ttransition: all 0.3s ease 0s;\r\n\t\t// visibility: hidden;\r\n\t\twidth: 54px;\r\n\t\tfont-size: 25px;\r\n\t\tcolor: #fff;\r\n\t\tbackground-color: rgba(255, 255, 255,0.2);\r\n\t\tborder-radius: 50%;\r\n\t\tleft: 50px;\r\n\t\tfont-size: 18px;\r\n\t\tline-height: 54px;\r\n\t}\r\n\t.owl-nav{\r\n\t\tdiv{\r\n\t\t\t&.owl-next{\r\n\t\t\t\t// left: 86px;\r\n\t\t\t\t// right: auto;\r\n\t\t\t\tleft: auto;\r\n\t\t\t\tright: 50px;\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 0;\r\n\t\t\t\t\ttop: 1px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\t&.owl-prev{\r\n\t\t\t\ti{\r\n\t\t\t\t\tposition: relative;\r\n\t\t\t\t\tright: 1px;\r\n\t\t\t\t\ttop: 0px;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t&:hover{\r\n\t\t.owl-nav{\r\n\t\t\tdiv{\r\n\t\t\t\topacity: 1;\r\n\t\t\t\tvisibility: visible;\r\n\t\t\t\t&:hover{\r\n\t\t\t\t\tcolor: #fff;\r\n\t\t\t\t\tbackground: #009DFF;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\n.mb-20px{\r\n\tmargin-bottom: 20px;\r\n}\r\n\r\n\r\n ",
+ "// opacity\r\n@mixin opacity($opacity) {\r\n opacity: $opacity;\r\n $opacity-ie: $opacity * 100;\r\n filter: alpha(opacity=$opacity-ie); //IE8\r\n }\r\n// transition\r\n@mixin transition($args...) {\r\n -webkit-transition: $args;\r\n -moz-transition: $args;\r\n -ms-transition: $args;\r\n -o-transition: $args;\r\n transition: $args;\r\n}// transition\r\n@mixin border-radius($man) {\r\n -webkit-border-radius: $man;\r\n -moz-border-radius: $man;\r\n border-radius: $man;\r\n}\r\n\r\n\r\n// Flexbox display\r\n@mixin flexbox() {\r\n display: -webkit-box;\r\n display: -moz-box;\r\n display: -ms-flexbox;\r\n display: -webkit-flex;\r\n display: flex;\r\n}\r\n\r\n// justify-content\r\n@mixin justify-content($justify) {\r\n -webkit-justify-content: $justify;\r\n -moz-justify-content: $justify;\r\n -ms-justify-content: $justify;\r\n justify-content: $justify;\r\n -ms-flex-pack: $justify;\r\n}\r\n\r\n// align-content\r\n@mixin align-content($align) {\r\n -webkit-align-content: $align;\r\n -moz-align-content: $align;\r\n -ms-align-content: $align;\r\n align-content: $align;\r\n}\r\n\r\n// Cross-axis Alignment\r\n@mixin align-items($align) {\r\n -webkit-align-items: $align;\r\n -moz-align-items: $align;\r\n -ms-align-items: $align;\r\n align-items: $align;\r\n}\r\n\r\n\r\n// transform\r\n// Browser Prefixes\r\n@mixin transform($transforms) {\r\n\t-webkit-transform: $transforms;\r\n\t-moz-transform: $transforms;\r\n\t-ms-transform: $transforms;\r\n\ttransform: $transforms;\r\n}\r\n// Translate\r\n@mixin translate ($x, $y) {\r\n\t@include transform(translate($x, $y));\r\n}\r\n// TranslateY\r\n@mixin translateY ($y) {\r\n @include transform(translateY($y));\r\n }\r\n// TranslateY\r\n@mixin translateX ($x) {\r\n @include transform(translateX($x));\r\n }\r\n\r\n\r\n// Box shadows\r\n@mixin box-shadow($shadow...) {\r\n -webkit-box-shadow: $shadow;\r\n -moz-box-shadow: $shadow; \r\n box-shadow: $shadow;\r\n}\r\n\r\n\r\n\r\n@mixin background($imgpath,$position: center,$size: cover,$repeat: no-repeat) {\r\n background: {\r\n image: url($imgpath);\r\n position: $position;\r\n repeat: $repeat;\r\n size: $size;\r\n }\r\n}\r\n@mixin transform_time($total_time) {\r\n -webkit-transition: $total_time;\r\n transition: $total_time;\r\n}\r\n@mixin placeholder {\r\n&.placeholder {\r\n @content;\r\n}\r\n&:-moz-placeholder {\r\n @content;\r\n}\r\n&::-moz-placeholder {\r\n @content;\r\n}\r\n&::-webkit-input-placeholder {\r\n @content;\r\n}\r\n}\r\n@mixin transition($args: all 0.6s ease 0s) {\r\n-webkit-transition: $args;\r\n-moz-transition: $args;\r\n-o-transition: $args;\r\ntransition: $args;\r\n}\r\n\r\n@mixin keyframes ($animation-name) {\r\n@-webkit-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-moz-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@-o-keyframes #{$animation-name} {\r\n @content;\r\n}\r\n@keyframes #{$animation-name} {\r\n @content;\r\n}\r\n}"
+ ],
+ "names": [],
+ "mappings": "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"
+} \ No newline at end of file
diff --git a/src/main/resources/static/css/themify-icons.css b/src/main/resources/static/css/themify-icons.css
new file mode 100644
index 0000000..45eb4a2
--- /dev/null
+++ b/src/main/resources/static/css/themify-icons.css
@@ -0,0 +1,1081 @@
+@font-face {
+ font-family: 'themify';
+ src:url('../fonts/themify.eot?-fvbane');
+ src:url('../fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),
+ url('../fonts/themify.woff?-fvbane') format('woff'),
+ url('../fonts/themify.ttf?-fvbane') format('truetype'),
+ url('../fonts/themify.svg?-fvbane#themify') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+[class^="ti-"], [class*=" ti-"] {
+ font-family: 'themify';
+ /* speak: none; */
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+
+ /* Better Font Rendering =========== */
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+.ti-wand:before {
+ content: "\e600";
+}
+.ti-volume:before {
+ content: "\e601";
+}
+.ti-user:before {
+ content: "\e602";
+}
+.ti-unlock:before {
+ content: "\e603";
+}
+.ti-unlink:before {
+ content: "\e604";
+}
+.ti-trash:before {
+ content: "\e605";
+}
+.ti-thought:before {
+ content: "\e606";
+}
+.ti-target:before {
+ content: "\e607";
+}
+.ti-tag:before {
+ content: "\e608";
+}
+.ti-tablet:before {
+ content: "\e609";
+}
+.ti-star:before {
+ content: "\e60a";
+}
+.ti-spray:before {
+ content: "\e60b";
+}
+.ti-signal:before {
+ content: "\e60c";
+}
+.ti-shopping-cart:before {
+ content: "\e60d";
+}
+.ti-shopping-cart-full:before {
+ content: "\e60e";
+}
+.ti-settings:before {
+ content: "\e60f";
+}
+.ti-search:before {
+ content: "\e610";
+}
+.ti-zoom-in:before {
+ content: "\e611";
+}
+.ti-zoom-out:before {
+ content: "\e612";
+}
+.ti-cut:before {
+ content: "\e613";
+}
+.ti-ruler:before {
+ content: "\e614";
+}
+.ti-ruler-pencil:before {
+ content: "\e615";
+}
+.ti-ruler-alt:before {
+ content: "\e616";
+}
+.ti-bookmark:before {
+ content: "\e617";
+}
+.ti-bookmark-alt:before {
+ content: "\e618";
+}
+.ti-reload:before {
+ content: "\e619";
+}
+.ti-plus:before {
+ content: "\e61a";
+}
+.ti-pin:before {
+ content: "\e61b";
+}
+.ti-pencil:before {
+ content: "\e61c";
+}
+.ti-pencil-alt:before {
+ content: "\e61d";
+}
+.ti-paint-roller:before {
+ content: "\e61e";
+}
+.ti-paint-bucket:before {
+ content: "\e61f";
+}
+.ti-na:before {
+ content: "\e620";
+}
+.ti-mobile:before {
+ content: "\e621";
+}
+.ti-minus:before {
+ content: "\e622";
+}
+.ti-medall:before {
+ content: "\e623";
+}
+.ti-medall-alt:before {
+ content: "\e624";
+}
+.ti-marker:before {
+ content: "\e625";
+}
+.ti-marker-alt:before {
+ content: "\e626";
+}
+.ti-arrow-up:before {
+ content: "\e627";
+}
+.ti-arrow-right:before {
+ content: "\e628";
+}
+.ti-arrow-left:before {
+ content: "\e629";
+}
+.ti-arrow-down:before {
+ content: "\e62a";
+}
+.ti-lock:before {
+ content: "\e62b";
+}
+.ti-location-arrow:before {
+ content: "\e62c";
+}
+.ti-link:before {
+ content: "\e62d";
+}
+.ti-layout:before {
+ content: "\e62e";
+}
+.ti-layers:before {
+ content: "\e62f";
+}
+.ti-layers-alt:before {
+ content: "\e630";
+}
+.ti-key:before {
+ content: "\e631";
+}
+.ti-import:before {
+ content: "\e632";
+}
+.ti-image:before {
+ content: "\e633";
+}
+.ti-heart:before {
+ content: "\e634";
+}
+.ti-heart-broken:before {
+ content: "\e635";
+}
+.ti-hand-stop:before {
+ content: "\e636";
+}
+.ti-hand-open:before {
+ content: "\e637";
+}
+.ti-hand-drag:before {
+ content: "\e638";
+}
+.ti-folder:before {
+ content: "\e639";
+}
+.ti-flag:before {
+ content: "\e63a";
+}
+.ti-flag-alt:before {
+ content: "\e63b";
+}
+.ti-flag-alt-2:before {
+ content: "\e63c";
+}
+.ti-eye:before {
+ content: "\e63d";
+}
+.ti-export:before {
+ content: "\e63e";
+}
+.ti-exchange-vertical:before {
+ content: "\e63f";
+}
+.ti-desktop:before {
+ content: "\e640";
+}
+.ti-cup:before {
+ content: "\e641";
+}
+.ti-crown:before {
+ content: "\e642";
+}
+.ti-comments:before {
+ content: "\e643";
+}
+.ti-comment:before {
+ content: "\e644";
+}
+.ti-comment-alt:before {
+ content: "\e645";
+}
+.ti-close:before {
+ content: "\e646";
+}
+.ti-clip:before {
+ content: "\e647";
+}
+.ti-angle-up:before {
+ content: "\e648";
+}
+.ti-angle-right:before {
+ content: "\e649";
+}
+.ti-angle-left:before {
+ content: "\e64a";
+}
+.ti-angle-down:before {
+ content: "\e64b";
+}
+.ti-check:before {
+ content: "\e64c";
+}
+.ti-check-box:before {
+ content: "\e64d";
+}
+.ti-camera:before {
+ content: "\e64e";
+}
+.ti-announcement:before {
+ content: "\e64f";
+}
+.ti-brush:before {
+ content: "\e650";
+}
+.ti-briefcase:before {
+ content: "\e651";
+}
+.ti-bolt:before {
+ content: "\e652";
+}
+.ti-bolt-alt:before {
+ content: "\e653";
+}
+.ti-blackboard:before {
+ content: "\e654";
+}
+.ti-bag:before {
+ content: "\e655";
+}
+.ti-move:before {
+ content: "\e656";
+}
+.ti-arrows-vertical:before {
+ content: "\e657";
+}
+.ti-arrows-horizontal:before {
+ content: "\e658";
+}
+.ti-fullscreen:before {
+ content: "\e659";
+}
+.ti-arrow-top-right:before {
+ content: "\e65a";
+}
+.ti-arrow-top-left:before {
+ content: "\e65b";
+}
+.ti-arrow-circle-up:before {
+ content: "\e65c";
+}
+.ti-arrow-circle-right:before {
+ content: "\e65d";
+}
+.ti-arrow-circle-left:before {
+ content: "\e65e";
+}
+.ti-arrow-circle-down:before {
+ content: "\e65f";
+}
+.ti-angle-double-up:before {
+ content: "\e660";
+}
+.ti-angle-double-right:before {
+ content: "\e661";
+}
+.ti-angle-double-left:before {
+ content: "\e662";
+}
+.ti-angle-double-down:before {
+ content: "\e663";
+}
+.ti-zip:before {
+ content: "\e664";
+}
+.ti-world:before {
+ content: "\e665";
+}
+.ti-wheelchair:before {
+ content: "\e666";
+}
+.ti-view-list:before {
+ content: "\e667";
+}
+.ti-view-list-alt:before {
+ content: "\e668";
+}
+.ti-view-grid:before {
+ content: "\e669";
+}
+.ti-uppercase:before {
+ content: "\e66a";
+}
+.ti-upload:before {
+ content: "\e66b";
+}
+.ti-underline:before {
+ content: "\e66c";
+}
+.ti-truck:before {
+ content: "\e66d";
+}
+.ti-timer:before {
+ content: "\e66e";
+}
+.ti-ticket:before {
+ content: "\e66f";
+}
+.ti-thumb-up:before {
+ content: "\e670";
+}
+.ti-thumb-down:before {
+ content: "\e671";
+}
+.ti-text:before {
+ content: "\e672";
+}
+.ti-stats-up:before {
+ content: "\e673";
+}
+.ti-stats-down:before {
+ content: "\e674";
+}
+.ti-split-v:before {
+ content: "\e675";
+}
+.ti-split-h:before {
+ content: "\e676";
+}
+.ti-smallcap:before {
+ content: "\e677";
+}
+.ti-shine:before {
+ content: "\e678";
+}
+.ti-shift-right:before {
+ content: "\e679";
+}
+.ti-shift-left:before {
+ content: "\e67a";
+}
+.ti-shield:before {
+ content: "\e67b";
+}
+.ti-notepad:before {
+ content: "\e67c";
+}
+.ti-server:before {
+ content: "\e67d";
+}
+.ti-quote-right:before {
+ content: "\e67e";
+}
+.ti-quote-left:before {
+ content: "\e67f";
+}
+.ti-pulse:before {
+ content: "\e680";
+}
+.ti-printer:before {
+ content: "\e681";
+}
+.ti-power-off:before {
+ content: "\e682";
+}
+.ti-plug:before {
+ content: "\e683";
+}
+.ti-pie-chart:before {
+ content: "\e684";
+}
+.ti-paragraph:before {
+ content: "\e685";
+}
+.ti-panel:before {
+ content: "\e686";
+}
+.ti-package:before {
+ content: "\e687";
+}
+.ti-music:before {
+ content: "\e688";
+}
+.ti-music-alt:before {
+ content: "\e689";
+}
+.ti-mouse:before {
+ content: "\e68a";
+}
+.ti-mouse-alt:before {
+ content: "\e68b";
+}
+.ti-money:before {
+ content: "\e68c";
+}
+.ti-microphone:before {
+ content: "\e68d";
+}
+.ti-menu:before {
+ content: "\e68e";
+}
+.ti-menu-alt:before {
+ content: "\e68f";
+}
+.ti-map:before {
+ content: "\e690";
+}
+.ti-map-alt:before {
+ content: "\e691";
+}
+.ti-loop:before {
+ content: "\e692";
+}
+.ti-location-pin:before {
+ content: "\e693";
+}
+.ti-list:before {
+ content: "\e694";
+}
+.ti-light-bulb:before {
+ content: "\e695";
+}
+.ti-Italic:before {
+ content: "\e696";
+}
+.ti-info:before {
+ content: "\e697";
+}
+.ti-infinite:before {
+ content: "\e698";
+}
+.ti-id-badge:before {
+ content: "\e699";
+}
+.ti-hummer:before {
+ content: "\e69a";
+}
+.ti-home:before {
+ content: "\e69b";
+}
+.ti-help:before {
+ content: "\e69c";
+}
+.ti-headphone:before {
+ content: "\e69d";
+}
+.ti-harddrives:before {
+ content: "\e69e";
+}
+.ti-harddrive:before {
+ content: "\e69f";
+}
+.ti-gift:before {
+ content: "\e6a0";
+}
+.ti-game:before {
+ content: "\e6a1";
+}
+.ti-filter:before {
+ content: "\e6a2";
+}
+.ti-files:before {
+ content: "\e6a3";
+}
+.ti-file:before {
+ content: "\e6a4";
+}
+.ti-eraser:before {
+ content: "\e6a5";
+}
+.ti-envelope:before {
+ content: "\e6a6";
+}
+.ti-download:before {
+ content: "\e6a7";
+}
+.ti-direction:before {
+ content: "\e6a8";
+}
+.ti-direction-alt:before {
+ content: "\e6a9";
+}
+.ti-dashboard:before {
+ content: "\e6aa";
+}
+.ti-control-stop:before {
+ content: "\e6ab";
+}
+.ti-control-shuffle:before {
+ content: "\e6ac";
+}
+.ti-control-play:before {
+ content: "\e6ad";
+}
+.ti-control-pause:before {
+ content: "\e6ae";
+}
+.ti-control-forward:before {
+ content: "\e6af";
+}
+.ti-control-backward:before {
+ content: "\e6b0";
+}
+.ti-cloud:before {
+ content: "\e6b1";
+}
+.ti-cloud-up:before {
+ content: "\e6b2";
+}
+.ti-cloud-down:before {
+ content: "\e6b3";
+}
+.ti-clipboard:before {
+ content: "\e6b4";
+}
+.ti-car:before {
+ content: "\e6b5";
+}
+.ti-calendar:before {
+ content: "\e6b6";
+}
+.ti-book:before {
+ content: "\e6b7";
+}
+.ti-bell:before {
+ content: "\e6b8";
+}
+.ti-basketball:before {
+ content: "\e6b9";
+}
+.ti-bar-chart:before {
+ content: "\e6ba";
+}
+.ti-bar-chart-alt:before {
+ content: "\e6bb";
+}
+.ti-back-right:before {
+ content: "\e6bc";
+}
+.ti-back-left:before {
+ content: "\e6bd";
+}
+.ti-arrows-corner:before {
+ content: "\e6be";
+}
+.ti-archive:before {
+ content: "\e6bf";
+}
+.ti-anchor:before {
+ content: "\e6c0";
+}
+.ti-align-right:before {
+ content: "\e6c1";
+}
+.ti-align-left:before {
+ content: "\e6c2";
+}
+.ti-align-justify:before {
+ content: "\e6c3";
+}
+.ti-align-center:before {
+ content: "\e6c4";
+}
+.ti-alert:before {
+ content: "\e6c5";
+}
+.ti-alarm-clock:before {
+ content: "\e6c6";
+}
+.ti-agenda:before {
+ content: "\e6c7";
+}
+.ti-write:before {
+ content: "\e6c8";
+}
+.ti-window:before {
+ content: "\e6c9";
+}
+.ti-widgetized:before {
+ content: "\e6ca";
+}
+.ti-widget:before {
+ content: "\e6cb";
+}
+.ti-widget-alt:before {
+ content: "\e6cc";
+}
+.ti-wallet:before {
+ content: "\e6cd";
+}
+.ti-video-clapper:before {
+ content: "\e6ce";
+}
+.ti-video-camera:before {
+ content: "\e6cf";
+}
+.ti-vector:before {
+ content: "\e6d0";
+}
+.ti-themify-logo:before {
+ content: "\e6d1";
+}
+.ti-themify-favicon:before {
+ content: "\e6d2";
+}
+.ti-themify-favicon-alt:before {
+ content: "\e6d3";
+}
+.ti-support:before {
+ content: "\e6d4";
+}
+.ti-stamp:before {
+ content: "\e6d5";
+}
+.ti-split-v-alt:before {
+ content: "\e6d6";
+}
+.ti-slice:before {
+ content: "\e6d7";
+}
+.ti-shortcode:before {
+ content: "\e6d8";
+}
+.ti-shift-right-alt:before {
+ content: "\e6d9";
+}
+.ti-shift-left-alt:before {
+ content: "\e6da";
+}
+.ti-ruler-alt-2:before {
+ content: "\e6db";
+}
+.ti-receipt:before {
+ content: "\e6dc";
+}
+.ti-pin2:before {
+ content: "\e6dd";
+}
+.ti-pin-alt:before {
+ content: "\e6de";
+}
+.ti-pencil-alt2:before {
+ content: "\e6df";
+}
+.ti-palette:before {
+ content: "\e6e0";
+}
+.ti-more:before {
+ content: "\e6e1";
+}
+.ti-more-alt:before {
+ content: "\e6e2";
+}
+.ti-microphone-alt:before {
+ content: "\e6e3";
+}
+.ti-magnet:before {
+ content: "\e6e4";
+}
+.ti-line-double:before {
+ content: "\e6e5";
+}
+.ti-line-dotted:before {
+ content: "\e6e6";
+}
+.ti-line-dashed:before {
+ content: "\e6e7";
+}
+.ti-layout-width-full:before {
+ content: "\e6e8";
+}
+.ti-layout-width-default:before {
+ content: "\e6e9";
+}
+.ti-layout-width-default-alt:before {
+ content: "\e6ea";
+}
+.ti-layout-tab:before {
+ content: "\e6eb";
+}
+.ti-layout-tab-window:before {
+ content: "\e6ec";
+}
+.ti-layout-tab-v:before {
+ content: "\e6ed";
+}
+.ti-layout-tab-min:before {
+ content: "\e6ee";
+}
+.ti-layout-slider:before {
+ content: "\e6ef";
+}
+.ti-layout-slider-alt:before {
+ content: "\e6f0";
+}
+.ti-layout-sidebar-right:before {
+ content: "\e6f1";
+}
+.ti-layout-sidebar-none:before {
+ content: "\e6f2";
+}
+.ti-layout-sidebar-left:before {
+ content: "\e6f3";
+}
+.ti-layout-placeholder:before {
+ content: "\e6f4";
+}
+.ti-layout-menu:before {
+ content: "\e6f5";
+}
+.ti-layout-menu-v:before {
+ content: "\e6f6";
+}
+.ti-layout-menu-separated:before {
+ content: "\e6f7";
+}
+.ti-layout-menu-full:before {
+ content: "\e6f8";
+}
+.ti-layout-media-right-alt:before {
+ content: "\e6f9";
+}
+.ti-layout-media-right:before {
+ content: "\e6fa";
+}
+.ti-layout-media-overlay:before {
+ content: "\e6fb";
+}
+.ti-layout-media-overlay-alt:before {
+ content: "\e6fc";
+}
+.ti-layout-media-overlay-alt-2:before {
+ content: "\e6fd";
+}
+.ti-layout-media-left-alt:before {
+ content: "\e6fe";
+}
+.ti-layout-media-left:before {
+ content: "\e6ff";
+}
+.ti-layout-media-center-alt:before {
+ content: "\e700";
+}
+.ti-layout-media-center:before {
+ content: "\e701";
+}
+.ti-layout-list-thumb:before {
+ content: "\e702";
+}
+.ti-layout-list-thumb-alt:before {
+ content: "\e703";
+}
+.ti-layout-list-post:before {
+ content: "\e704";
+}
+.ti-layout-list-large-image:before {
+ content: "\e705";
+}
+.ti-layout-line-solid:before {
+ content: "\e706";
+}
+.ti-layout-grid4:before {
+ content: "\e707";
+}
+.ti-layout-grid3:before {
+ content: "\e708";
+}
+.ti-layout-grid2:before {
+ content: "\e709";
+}
+.ti-layout-grid2-thumb:before {
+ content: "\e70a";
+}
+.ti-layout-cta-right:before {
+ content: "\e70b";
+}
+.ti-layout-cta-left:before {
+ content: "\e70c";
+}
+.ti-layout-cta-center:before {
+ content: "\e70d";
+}
+.ti-layout-cta-btn-right:before {
+ content: "\e70e";
+}
+.ti-layout-cta-btn-left:before {
+ content: "\e70f";
+}
+.ti-layout-column4:before {
+ content: "\e710";
+}
+.ti-layout-column3:before {
+ content: "\e711";
+}
+.ti-layout-column2:before {
+ content: "\e712";
+}
+.ti-layout-accordion-separated:before {
+ content: "\e713";
+}
+.ti-layout-accordion-merged:before {
+ content: "\e714";
+}
+.ti-layout-accordion-list:before {
+ content: "\e715";
+}
+.ti-ink-pen:before {
+ content: "\e716";
+}
+.ti-info-alt:before {
+ content: "\e717";
+}
+.ti-help-alt:before {
+ content: "\e718";
+}
+.ti-headphone-alt:before {
+ content: "\e719";
+}
+.ti-hand-point-up:before {
+ content: "\e71a";
+}
+.ti-hand-point-right:before {
+ content: "\e71b";
+}
+.ti-hand-point-left:before {
+ content: "\e71c";
+}
+.ti-hand-point-down:before {
+ content: "\e71d";
+}
+.ti-gallery:before {
+ content: "\e71e";
+}
+.ti-face-smile:before {
+ content: "\e71f";
+}
+.ti-face-sad:before {
+ content: "\e720";
+}
+.ti-credit-card:before {
+ content: "\e721";
+}
+.ti-control-skip-forward:before {
+ content: "\e722";
+}
+.ti-control-skip-backward:before {
+ content: "\e723";
+}
+.ti-control-record:before {
+ content: "\e724";
+}
+.ti-control-eject:before {
+ content: "\e725";
+}
+.ti-comments-smiley:before {
+ content: "\e726";
+}
+.ti-brush-alt:before {
+ content: "\e727";
+}
+.ti-youtube:before {
+ content: "\e728";
+}
+.ti-vimeo:before {
+ content: "\e729";
+}
+.ti-twitter:before {
+ content: "\e72a";
+}
+.ti-time:before {
+ content: "\e72b";
+}
+.ti-tumblr:before {
+ content: "\e72c";
+}
+.ti-skype:before {
+ content: "\e72d";
+}
+.ti-share:before {
+ content: "\e72e";
+}
+.ti-share-alt:before {
+ content: "\e72f";
+}
+.ti-rocket:before {
+ content: "\e730";
+}
+.ti-pinterest:before {
+ content: "\e731";
+}
+.ti-new-window:before {
+ content: "\e732";
+}
+.ti-microsoft:before {
+ content: "\e733";
+}
+.ti-list-ol:before {
+ content: "\e734";
+}
+.ti-linkedin:before {
+ content: "\e735";
+}
+.ti-layout-sidebar-2:before {
+ content: "\e736";
+}
+.ti-layout-grid4-alt:before {
+ content: "\e737";
+}
+.ti-layout-grid3-alt:before {
+ content: "\e738";
+}
+.ti-layout-grid2-alt:before {
+ content: "\e739";
+}
+.ti-layout-column4-alt:before {
+ content: "\e73a";
+}
+.ti-layout-column3-alt:before {
+ content: "\e73b";
+}
+.ti-layout-column2-alt:before {
+ content: "\e73c";
+}
+.ti-instagram:before {
+ content: "\e73d";
+}
+.ti-google:before {
+ content: "\e73e";
+}
+.ti-github:before {
+ content: "\e73f";
+}
+.ti-flickr:before {
+ content: "\e740";
+}
+.ti-facebook:before {
+ content: "\e741";
+}
+.ti-dropbox:before {
+ content: "\e742";
+}
+.ti-dribbble:before {
+ content: "\e743";
+}
+.ti-apple:before {
+ content: "\e744";
+}
+.ti-android:before {
+ content: "\e745";
+}
+.ti-save:before {
+ content: "\e746";
+}
+.ti-save-alt:before {
+ content: "\e747";
+}
+.ti-yahoo:before {
+ content: "\e748";
+}
+.ti-wordpress:before {
+ content: "\e749";
+}
+.ti-vimeo-alt:before {
+ content: "\e74a";
+}
+.ti-twitter-alt:before {
+ content: "\e74b";
+}
+.ti-tumblr-alt:before {
+ content: "\e74c";
+}
+.ti-trello:before {
+ content: "\e74d";
+}
+.ti-stack-overflow:before {
+ content: "\e74e";
+}
+.ti-soundcloud:before {
+ content: "\e74f";
+}
+.ti-sharethis:before {
+ content: "\e750";
+}
+.ti-sharethis-alt:before {
+ content: "\e751";
+}
+.ti-reddit:before {
+ content: "\e752";
+}
+.ti-pinterest-alt:before {
+ content: "\e753";
+}
+.ti-microsoft-alt:before {
+ content: "\e754";
+}
+.ti-linux:before {
+ content: "\e755";
+}
+.ti-jsfiddle:before {
+ content: "\e756";
+}
+.ti-joomla:before {
+ content: "\e757";
+}
+.ti-html5:before {
+ content: "\e758";
+}
+.ti-flickr-alt:before {
+ content: "\e759";
+}
+.ti-email:before {
+ content: "\e75a";
+}
+.ti-drupal:before {
+ content: "\e75b";
+}
+.ti-dropbox-alt:before {
+ content: "\e75c";
+}
+.ti-css3:before {
+ content: "\e75d";
+}
+.ti-rss:before {
+ content: "\e75e";
+}
+.ti-rss-alt:before {
+ content: "\e75f";
+}