@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,300,400italic,300italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Nunito:400,300,700);

/* ==========================================================================
Typography
========================================================================== */
p {
    font-size: 1em;
    line-height: 29px;
    color: #49617b;
    padding-bottom: 20px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 40px;
    font-weight: 300;
    color: #3D4351;
}

h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #3D4351;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
    color: #3D4351;
    text-transform: uppercase;
    font-weight: 500;
}

.btn {
    font-size: 13px;
    border-radius: 40px;
    display: inline-block;
    text-transform: uppercase;
}

.btn:hover, .btn:focus {
    color: #fff;
    border-color: #ff5257;
    background-color: #ff5257;
}

.btn-white {
    font-size: 13px;
    border: solid 2px;
    border-radius: 40px;
    display: inline-block;
    border-color: #fff;
}

.btn-white:hover, .btn-white:focus {
    color: #ff5257;
    border-color: #ff5257;
}

.btn-fill {
    color: #fff;
    border: solid 2px #ff5257;
    border-radius: 40px;
    display: inline-block;
    text-transform: uppercase;
    background-color: #ff5257;
}

.btn-fill:hover, .btn-fill:focus {
    color: #fff;
    background-color: #D73943;
    border-color: #D73943;
}

.btn-small {
    padding: 8px 40px;
}

.btn-large {
    padding: 15px 40px;
}

.btn-margin-right {
    margin-right: 20px;
}

section.intro, section.features-extra, section.sign-up {
    background: #fff !important;
}

section.features, section.blog-intro, section.blog {
    background: #F3F4F8;
}

.features-list {
    background-color: #fff !important;
    background-image: url("../img/bg-list.jpg") !important;
    background-position: center 300px !important;
    background-repeat: no-repeat !important;
    z-index: 3;
    background-size: 80% !important;
    ob
}

/* ==========================================================================
Global Styles
========================================================================== */
.group:after {
    content: "";
    display: table;
    clear: both;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

a {
    color: #ff5257;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-property: color, border-color, background-color;
    transition-property: color, border-color, background-color;
}

a:hover, a:focus {
    color: #D73943;
    text-decoration: none;
}

body {
	background: url("../img/hero.jpg") no-repeat center center fixed; 
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    color: #365e8a;
    -webkit-text-size-adjust: 100%;
	-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

ul, ol {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

.section-padding {
    padding: 60px 0;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9;
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    background-color: #000;
    border-radius: 4px;
}

/* ==========================================================================
Animations
========================================================================== */
.pulse2 {
    -webkit-animation-name: pulse2;
    animation-name: pulse2;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse2 {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.floating-arrow {
    -webkit-animation-name: floating-arrow;
    animation-name: floating-arrow;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating-arrow {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    65% {
        -webkit-transform: translate(-50%, 15px);
        transform: translate(-50%, 15px);
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@keyframes floating-arrow {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    65% {
        -webkit-transform: translate(-50%, 15px);
        transform: translate(-50%, 15px);
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

.floating-logo {
    -webkit-animation-name: floating-logo;
    animation-name: floating-logo;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes floating-logo {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    50% {
        -webkit-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px);
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@keyframes floating-logo {
    from {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    50% {
        -webkit-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px);
    }
    to {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

/* ==========================================================================
Waypoinsts
========================================================================== */
.wp1, .wp2, .wp3, .wp4, .wp5, .wp6, .wp7, .wp8, .wp9 {
    visibility: hidden;
}

.wp2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight, .bounceInDown {
    visibility: visible;
}

/* ==========================================================================
Navigation
========================================================================== */
.header-nav.open {
    visibility: visible;
    opacity: 0.9;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.nav-toggle {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 999999;
    padding: 10px 35px 16px 0;
    cursor: pointer;
}

.nav-toggle:focus {
    outline: none;
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
    content: "";
    position: absolute;
    display: block;
    width: 35px;
    height: 3px;
    border-radius: 1px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span:before {
    top: -10px;
}

.nav-toggle span:after {
    bottom: -10px;
}

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.nav-toggle.active span {
    background-color: transparent;
}

.nav-toggle.active span:before, .nav-toggle.active span:after {
    top: 0;
}

.nav-toggle.active span:before {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-toggle.active span:after {
    top: 10px;
    -ms-transform: translatey(-10px) rotate(-45deg);
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
}

.navicon {
    position: absolute;
    height: 26px;
    right: 10px;
    top: 48px;
    visibility: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

/* ==========================================================================
Hero
========================================================================== */
.hero {
    
    background-size: cover;
    position: relative;
}

.hero.in{
    background: #f5f5f5;
}

.hero.in .navigation{
    background: url("../img/hero.jpg") center center;
    background-size: cover;
}

.hero .down-arrow a {
    color: #fff;
}

.hero h1 {
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.5;
}

.hero p.intro {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero .hero-content {
    padding-top: 170px;
    padding-bottom: 100px;
}

.navigation {
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.fixed {
    position: fixed;
    background-color: #1f2630;
    z-index: 999;
    width: 100%;
}

header {
    padding: 50px 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    position: relative;
    width: 1170px;
    margin: 0 auto;
    -webkit-transition: padding 300ms ease-in-out;
    transition: padding 300ms ease-in-out;
}

header a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

header a.login {
    margin-right: 20px;
}

header .logo {
    display: inline-block;
}

header ul.primary-nav {
    margin: 0 0 0 75px;
    padding: 0;
}

header ul.primary-nav li {
    display: inline;
}

header ul.primary-nav li a {
    color: #fff;
    padding-right: 25px;
}

header ul.primary-nav li a:hover {
    color: #ff5257;
}

header ul.primary-nav li:last-child a {
    padding-right: 0px;
}

header ul.member-actions li {
    display: inline;
}

header ul.member-actions li a {
    color: #fff;
}

header ul.member-actions li a:hover {
    color: #ff5257;
}

header ul.member-actions li a:last-child{
    margin-left: 15px;
}

header .header-nav {
    display: inline-block;
}

header .member-actions {
    position: absolute;
    right: 0;
    top: 41px;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.down-arrow {
    color: #fff;
    font-size: 30px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* ==========================================================================
Intro
========================================================================== */
.intro span.icon {
    font-size: 40px;
    color: #ff5257;
    font-weight: bold;
}

.intro-icon {
    display: inline-block;
    vertical-align: top;
    padding: 6px 0 0 0;
    margin-right: 20px;
    width: 40px;
}

.intro-content {
    display: inline-block;
    width: 80%;
}

/* ==========================================================================
Features-stack
========================================================================== */
.features {
    position: relative;
}

.features p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.features h3 {
    margin: 0 0 20px 0;
}

.features span.icon {
    font-size: 35px;
    color: #2ec4b9;
    font-weight: bold;
}

.features .feature-icon {
    display: inline-block;
    vertical-align: top;
    padding: 6px 0 0 0;
    margin-right: 20px;
    width: 35px;
}

.features .feature-content {
    display: inline-block;
    width: calc(100% - 60px);
}

.features .intro-icon {
    display: inline-block;
    vertical-align: top;
    padding: 6px 0 0 0;
    margin-right: 20px;
}

.features .intro-content {
    display: inline-block;
    width: 80%;
}

.features ul.features-stack {
    margin-top: 0px;
}

.features ul.features-stack li {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #E6E9EA;
}

.features ul.features-stack li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.features .ipad-wrap {
    width: 706px;
    height: 1002px;
    background: url("../img/ipad-device.png") no-repeat center center;
    z-index: 1;
}

.features .iphone-wrap {
    width: 304px;
    height: 620px;
    background: url("../img/iphone6.png") no-repeat center center;
    position: absolute;
    left: 530px;
    bottom: 129px;
    z-index: 2;
}

.features .device-showcase {
    position: absolute;
    bottom: -365px;
    right: 61%;
}

.features .responsive-feature-img, .features-extra .responsive-feature-img {
    display: none;
}

.devices {
    position: relative;
}

/* ==========================================================================
.features-extra
========================================================================== */
.features-extra {
    position: relative;
    z-index: 3;
}

.features-extra .btn {
    margin-top: 20px;
}

.features-extra .macbook-wrap {
    position: absolute;
    width: 916px;
    height: 540px;
    background: url("../img/macbook-pro.png") no-repeat center center;
    top: 114px;
    z-index: 4;
    left: 50%;
}

/* ==========================================================================
.hero-strip
========================================================================== */
.hero-strip {
    background: #1d2029 url("../img/polygonal-bg.jpg") no-repeat center center;
    padding-bottom: 190px;
    position: relative;
}

.hero-strip i {
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #F69D52;
    vertical-align: top;
    margin-left: -8px;
    font-style: normal;
}

.hero-strip h2 {
    color: #fff;
    margin: 0 0 20px 0;
}

.hero-strip p {
    color: #ACB1B4;
}

.hero-strip .btn {
    margin-top: 10px;
}

.hero-strip .logo-placeholder {
    width: 230px;
    height: 230px;
    position: absolute;
    bottom: -285px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* ==========================================================================
.blog-intro
========================================================================== */
.blog-intro {
    padding-top: 160px;
}

.blog-intro h3 {
    margin-bottom: 70px;
}

.blog-intro .leftcol {
    padding-right: 100px;
    border-right: solid 1px #E6E9EA;
}

.blog-intro .rightcol {
    padding-left: 100px;
}

/* ==========================================================================
.blog
========================================================================== */
.blog {
    padding-bottom: 120px;
}

.blog img {
    width: 100%;
    height: auto;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.blog h2 {
    font-size: 11px;
    color: #ACB1B4;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 35px;
}

.blog .btn {
    margin-top: 20px;
}

.blog .blog-img-wrap {
    position: relative;
    overflow: hidden;
}

.blog .blog-img-wrap .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
}

.blog .blog-img-wrap i {
    color: #fff;
    font-size: 20px;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 25px;
    right: 35px;
}

.blog .blog-img-wrap:hover img, .blog .blog-img-wrap:focus img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog .blog-img-wrap:hover .overlay, .blog .blog-img-wrap:focus .overlay {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
    opacity: 1;
    z-index: 9;
}

.blog figcaption i {
    margin-left: 5px;
    font-size: 15px;
}

.blog figcaption a.blog-post-title {
    color: rgba(28, 54, 83, 0.6);
}

.blog figcaption a.blog-post-title:hover, .blog figcaption a.blog-post-title:focus {
    color: #3D4351;
}

/* ==========================================================================
.testimonial-slider
========================================================================== */
.testimonial-slider {
    background: url("../img/testimonials-bg.jpg") no-repeat center center;
    background-size: cover;
}

.testimonial-slider .avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 50%;
    border: solid 3px #fff;
    background-color: #fff;
}

.testimonial-slider .avatar img {
    width: 120px;
    height: auto;
}

.testimonial-slider h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    margin: 30px 0;
}

.testimonial-slider p {
    color: #ACB1B4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
Sign up form
========================================================================== */
.signup-form .sign-up-btn {
    padding: 15px 0;
    border-radius: 3px;
    width: 80%;
    font-size: 13px;
}

.signup-form .form-input-group {
    width: 80%;
    height: 55px;
    margin: 0 auto 10px;
    border-radius: 5px;
    border: solid 1px #E6E9EA;
    text-align: left;
    position: relative;
}

.signup-form .form-input-group i {
    color: #ff5257;
    font-size: 14px;
}

.signup-form .form-input-group i:after {
    content: "";
    height: 30px;
    width: 1px;
    border-right: solid 1px #E6E9EA;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.signup-form .form-input-group i.fa-lock {
    font-size: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 20px;
}

.signup-form .form-input-group i.fa-envelope {
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 20px;
}

.signup-form .form-input-group i.fa-phone {
    font-size: 14px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 20px;
}

.signup-form .form-input-group input {
    padding-left: 68px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: none;
}

.signup-form .form-input-group input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.signup-form .form-input-group input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.signup-form .form-input-group input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.signup-form .form-input-group input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
To top
========================================================================== */
.to-top {
    height: 60px;
    background-color: #495061;
}

.to-top .to-top-wrap {
    height: 60px;
    width: 70px;
    position: absolute;
    right: 0;
    text-align: center;
}

.to-top .to-top-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.15);
}

.to-top .to-top-wrap a:hover, .to-top .to-top-wrap a:focus {
    background-color: rgba(0, 0, 0, 0.4);
}

.to-top .to-top-wrap i {
    font-size: 30px;
    line-height: 55px;
}

.to-top .row {
    position: relative;
}
/*Guide*/
.guide-container {
    margin-top: 50px;
    font-weight: 500;
}

.guide-container p{
    padding: 0;
}
.guide-container .nav-tabs > li > a{
    color: #373d4a;
    margin: 0;
    border-radius: 0;
    font-size: 1.3em;
}

.guide-container .nav-tabs > li.active > a,.guide-container  .nav-tabs > li.active > a:hover,.guide-container  .nav-tabs > li.active > a:focus{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #D73943;
    background: #fff;
    border: solid 1px #ddd;
    border-bottom: solid 1px #fff;
}

.guide-container .nav-tabs > li > a:hover{
    background: #495061;
    border-radius: 0;
    border-color: transparent;
    color: #fff;
}

.guide-container .tab-content{
    display: inline-block;
    background: #ffffff;
    width: 100%;
    border: solid 1px #ddd;
    border-top: none;
    text-align: left;
    padding: 10px 50px;
}
.guide-container .tab-content ul{
    margin-left: 40px;
}
.guide-container .tab-content ul li{
    list-style: circle;
}

.guide-container .tab-content img{
    width: auto;
    max-width: 100%;
}
/* ==========================================================================
Footer
========================================================================== */
footer {
    background-color: #3D4351;
    position: relative;
}

footer p {
    color: #ACB1B4;
    font-size: 13px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #ff5257;
}

footer ul.footer-group {
    border-top: solid 1px #4E566C;
    padding-top: 25px;
    margin-bottom: 45px;
}

footer ul.footer-group li {
    display: inline-block;
}

footer ul.footer-group li a {
    font-size: 13px;
    text-transform: uppercase;
}

footer ul.footer-group li a:hover {
    color: #ff5257;
}

footer ul.footer-group li {
    margin-right: 30px;
}

footer ul.footer-group li:last-child {
    margin-right: 0;
}

footer span.fa-heart {
    color: #ff415c;
    font-size: 15px;
    margin: 0 2px;
}

footer .social-share {
    position: absolute;
    background-color: #373D4A;
    right: 0;
    width: 40%;
    height: 100%;
    padding: 85px 0 0 50px;
}

footer .social-share p {
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 10px;
}

footer .social-share a.twitter-share {
    height: 60px;
    width: 60px;
    background-color: #1AB4EF;
    border-radius: 3px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    margin-right: 20px;
}

footer .social-share a.twitter-share:hover, footer .social-share a.twitter-share:focus {
    background-color: #1590BF;
}

footer .social-share a.facebook-share:hover, footer .social-share a.facebook-share:focus {
    background-color: #324C85;
}

footer .social-share a.facebook-share {
    height: 60px;
    width: 60px;
    background-color: #3B5898;
    border-radius: 3px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
}

footer .social-share a {
    color: #fff;
}

footer .social-share a:hover {
    color: #fff;
}

footer .social-share a i {
    margin-top: 20px;
}

footer .footer-links {
    margin: 50px;
}

/* ==========================================================================
Icon font (http://www.elegantthemes.com/blog/freebie-of-the-week/free-line-style-icons)
========================================================================== */
@font-face {
    font-family: 'et-line';
    src: url("../fonts/et-line.eot");
    src: url("../fonts/et-lined41d.eot?#iefix") format("embedded-opentype"), url("../fonts/et-line.woff") format("woff"), url("../fonts/et-line.ttf") format("truetype"), url("../fonts/et-line.svg#et-line") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
    font-family: 'et-line';
    content: attr(data-icon);
    speak: none;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
    font-family: 'et-line';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

.icon-mobile:before {
    content: "\e000";
}

.icon-laptop:before {
    content: "\e001";
}

.icon-desktop:before {
    content: "\e002";
}

.icon-tablet:before {
    content: "\e003";
}

.icon-phone:before {
    content: "\e004";
}

.icon-document:before {
    content: "\e005";
}

.icon-documents:before {
    content: "\e006";
}

.icon-search:before {
    content: "\e007";
}

.icon-clipboard:before {
    content: "\e008";
}

.icon-newspaper:before {
    content: "\e009";
}

.icon-notebook:before {
    content: "\e00a";
}

.icon-book-open:before {
    content: "\e00b";
}

.icon-browser:before {
    content: "\e00c";
}

.icon-calendar:before {
    content: "\e00d";
}

.icon-presentation:before {
    content: "\e00e";
}

.icon-picture:before {
    content: "\e00f";
}

.icon-pictures:before {
    content: "\e010";
}

.icon-video:before {
    content: "\e011";
}

.icon-camera:before {
    content: "\e012";
}

.icon-printer:before {
    content: "\e013";
}

.icon-toolbox:before {
    content: "\e014";
}

.icon-briefcase:before {
    content: "\e015";
}

.icon-wallet:before {
    content: "\e016";
}

.icon-gift:before {
    content: "\e017";
}

.icon-bargraph:before {
    content: "\e018";
}

.icon-grid:before {
    content: "\e019";
}

.icon-expand:before {
    content: "\e01a";
}

.icon-focus:before {
    content: "\e01b";
}

.icon-edit:before {
    content: "\e01c";
}

.icon-adjustments:before {
    content: "\e01d";
}

.icon-ribbon:before {
    content: "\e01e";
}

.icon-hourglass:before {
    content: "\e01f";
}

.icon-lock:before {
    content: "\e020";
}

.icon-megaphone:before {
    content: "\e021";
}

.icon-shield:before {
    content: "\e022";
}

.icon-trophy:before {
    content: "\e023";
}

.icon-flag:before {
    content: "\e024";
}

.icon-map:before {
    content: "\e025";
}

.icon-puzzle:before {
    content: "\e026";
}

.icon-basket:before {
    content: "\e027";
}

.icon-envelope:before {
    content: "\e028";
}

.icon-streetsign:before {
    content: "\e029";
}

.icon-telescope:before {
    content: "\e02a";
}

.icon-gears:before {
    content: "\e02b";
}

.icon-key:before {
    content: "\e02c";
}

.icon-paperclip:before {
    content: "\e02d";
}

.icon-attachment:before {
    content: "\e02e";
}

.icon-pricetags:before {
    content: "\e02f";
}

.icon-lightbulb:before {
    content: "\e030";
}

.icon-layers:before {
    content: "\e031";
}

.icon-pencil:before {
    content: "\e032";
}

.icon-tools:before {
    content: "\e033";
}

.icon-tools-2:before {
    content: "\e034";
}

.icon-scissors:before {
    content: "\e035";
}

.icon-paintbrush:before {
    content: "\e036";
}

.icon-magnifying-glass:before {
    content: "\e037";
}

.icon-circle-compass:before {
    content: "\e038";
}

.icon-linegraph:before {
    content: "\e039";
}

.icon-mic:before {
    content: "\e03a";
}

.icon-strategy:before {
    content: "\e03b";
}

.icon-beaker:before {
    content: "\e03c";
}

.icon-caution:before {
    content: "\e03d";
}

.icon-recycle:before {
    content: "\e03e";
}

.icon-anchor:before {
    content: "\e03f";
}

.icon-profile-male:before {
    content: "\e040";
}

.icon-profile-female:before {
    content: "\e041";
}

.icon-bike:before {
    content: "\e042";
}

.icon-wine:before {
    content: "\e043";
}

.icon-hotairballoon:before {
    content: "\e044";
}

.icon-globe:before {
    content: "\e045";
}

.icon-genius:before {
    content: "\e046";
}

.icon-map-pin:before {
    content: "\e047";
}

.icon-dial:before {
    content: "\e048";
}

.icon-chat:before {
    content: "\e049";
}

.icon-heart:before {
    content: "\e04a";
}

.icon-cloud:before {
    content: "\e04b";
}

.icon-upload:before {
    content: "\e04c";
}

.icon-download:before {
    content: "\e04d";
}

.icon-target:before {
    content: "\e04e";
}

.icon-hazardous:before {
    content: "\e04f";
}

.icon-piechart:before {
    content: "\e050";
}

.icon-speedometer:before {
    content: "\e051";
}

.icon-global:before {
    content: "\e052";
}

.icon-compass:before {
    content: "\e053";
}

.icon-lifesaver:before {
    content: "\e054";
}

.icon-clock:before {
    content: "\e055";
}

.icon-aperture:before {
    content: "\e056";
}

.icon-quote:before {
    content: "\e057";
}

.icon-scope:before {
    content: "\e058";
}

.icon-alarmclock:before {
    content: "\e059";
}

.icon-refresh:before {
    content: "\e05a";
}

.icon-happy:before {
    content: "\e05b";
}

.icon-sad:before {
    content: "\e05c";
}

.icon-facebook:before {
    content: "\e05d";
}

.icon-twitter:before {
    content: "\e05e";
}

.icon-googleplus:before {
    content: "\e05f";
}

.icon-rss:before {
    content: "\e060";
}

.icon-tumblr:before {
    content: "\e061";
}

.icon-linkedin:before {
    content: "\e062";
}

.icon-dribbble:before {
    content: "\e063";
}

/**/

.p-lr-20{
    padding-left: 20px;
    padding-right: 20px;
}

.login-form .nav-tabs{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-form .nav-tabs > li{
    width: 50%;
    text-transform: uppercase;
    font-size: 1.2em;
}

.login-form .nav-tabs > li.active > a,.login-form .nav-tabs > li.active > a:hover,.login-form .nav-tabs > li.active > a:focus{
    background: transparent;
    color: #fff;
    border: transparent;
    border-bottom: solid 1px;
}
.login-form .nav > li > a{
    color: rgba(255, 255, 255, 0.4);
}
.login-form .nav > li > a:hover,.login-form .nav > li > a:focus{
    background: transparent;
    border: 1px solid transparent;
    color: #fff;
}

.login-form .tab-content .tab-pane h3{
    color: #fff;
}

.login-form .tab-content .tab-pane p{
    color: rgba(255, 255, 255, 0.4);
}

.login-form .signup-form .form-input-group{
    border: none;
}

.login-form .signup-form .form-input-group input{
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    outline: none;
}

.login-form .signup-form .form-input-group i:after{
    border-right-color: rgba(255, 255, 255, 0.15);
}
/*Bundle*/
.pricing-column {
    position: relative;
    margin-bottom: 40px;
}
.pricing-column .inner-box {
    position: relative;
    margin: 20px auto 0px auto;
    max-width: 320px;
    padding: 0px 30px 30px;
    background-color: #f3f6fa;
    border-radius: 5px;
}
.pricing-column .plan-header {
    position: relative;
    padding: 30px 20px 25px;
}
.pricing-column .plan-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2dc4b9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}
.pricing-column .plan-price {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}
.plan-price span {
    font-size: 0.5em;
    position: relative;
    top: -15px;
}
.pricing-column .plan-duration {
    font-size: 13px;
    color: #98a6ad;
}
.pricing-column .plan-stats {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    font-weight: 500;
    color: #3d4351;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.pricing-column .plan-stats li {
    line-height: 30px;
}
.partnerimg {
    padding: 20px;
    max-width: 100%;
    width: auto;
}
/*Event*/

.mon-info {
    background: rgba(0, 0, 0, 0.95);
    color: #ddd;
    border: solid 1px rgba(0, 0, 0, 0.8);
    min-width: 248px;
    z-index: 9999;
    display: inline-block;
    font-size: 13px;
    padding: 5px 8px;
}

.mon-info h4{
    margin: 5px 0 10px 0;
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 10px 0;
    border-bottom: solid 1px #ffffff2e;
}

.mon-info p{
    color: #ddd;
}

a.login-fb {
    background: #4059ab url(../img/fb-ico.png) no-repeat 20px center;
    background-size: 10px;
    padding: 10px 20px 10px 50px;
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    box-shadow: 0 2px 12px 0px rgba(0, 0, 0, 0.5);
}

a.login-fb:hover{
    box-shadow:inset 0 0 0 2px rgba(121, 194, 255, 0.5);
}

.gh-all{
    width: 100%;
}

.gh-des p:nth-child(2){
    height: 40px;
}

.gh-img {
    margin: 25px 0 10px 0;
    padding: 5px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    position: relative;
}

.gh-img span{
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.gh-des h3 {
    margin-top: 0;
}

.gh-des h3 span{
    color: #c71c3c;
}

.gh-des p i{
    width: 20px;
    text-align: center;
}

/*Progress Bar*/
.event-tx, .event-tx p, .event-tx a{
    color: #fff;
}

.progress {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px #0003;
    margin: 0;
}

.gh-progress {
    position: relative;
    margin: 30px 0;
}

.daily-user {
    width: 100%;
    display: inline-block;
    margin-top: 50px;
}

.daily-user p{
    line-height: inherit;
    padding: 0;
}

.dl-user img{
    height: 48px;
    width: 48px;
    box-shadow: 0 0 0 1px #ffffff33;
    float: left;
}

.dl-user span {
    float: left;
    margin-left: 10px;
}

.dl-user span p{
    margin: 0 0 5px 0;
}

.dl-user span p:first-child{
    font-size: 20px;
    margin: 0;
}

.dl-user, .dl-vault {
    position: relative;
    display: inline-block;
    float: left;
}

.dl-vault{
    float: right;
    text-align: right;
    background: #0000008a;
    border-radius: 5px 0 5px 5px;
    padding: 5px;
    min-height: 63px;
    min-width: 140px;
}

.vault{
    position: relative !important;
    display: inline-block !important;
    margin: 0 10px 0 0;
    bottom: 0 !important;
    left: 0 !important;
}

.dl-vault p {
    margin: 0;
    position: absolute;
    top: -24px;
    display: inline-block;
    background: #0000008a;
    padding: 2px 6px;
    border-radius: 4px 4px 0px 0px;
    right: 0px;
    white-space: nowrap;
}

a.get-daily{
    width: 100%;
    height: 100%;
    float: left;
    background: #e73c3c;
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    line-height: 65px;
    font-weight: 600;
    text-shadow: 0 1px 1px #000;
    display: none;
}

.days li:hover a.get-daily{
    display: block;
}

.dl-jackpot{
    background: url("../img/daily/jp-bg.png") no-repeat center;
    height: 70px;
    width: 200px;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.dl-jackpot span{
    position: absolute;
    bottom: 4px;
    left: 10px;
    font-weight: 700;
    color: #ff0;
}

.flashit{
    color:#ff0;
    -webkit-animation: flash linear 1s infinite;
    animation: flash linear 1s infinite;
}
@-webkit-keyframes flash {
    0% { opacity: 1; }
    50% { opacity: .1; }
    100% { opacity: 1; }
}
@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: .1; }
    100% { opacity: 1; }
}
/* Pulse class and keyframe animation */
.pulseit{
    -webkit-animation: pulse linear .5s infinite;
    animation: pulse linear .5s infinite;
}
@-webkit-keyframes pulse {
    0% { width:200px; }
    50% { width:340px; }
    100% { width:200px; }
}
@keyframes pulse {
    0% { width:200px; }
    50% { width:340px; }
    100% { width:200px; }
}

.jackpot h3{
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: #fff;
}

.jackpot-us {
    text-align: center;
    background: #00000061;
    border-radius: 6px;
    padding: 10px;
    margin: 20px;
    border: solid 1px #ffffff12;
}

.jp-us {
    background: #ffd22c;
    color: #000;
    font-weight: 800;
    font-size: 1.4em;
    padding: 0px 8px;
    border-radius: 5px;
    text-shadow: 0 1px 1px #fff;
    margin-top: 10px;
    border: solid 1px #fff829;
}

.jp-num span {
    display: inline-block;
    color: #000;
    font-size: 60px;
    font-weight: 800;
    padding: 0px 8px;
    margin: 10px -1px;
    border-radius: 5px;
    text-shadow: 0 2px 0px #fff;
    background: #828282;
    background: -moz-linear-gradient(top, #828282 0%, #ffffff 40%, #ffffff 60%, #ffffff 60%, #828282 100%);
    background: -webkit-linear-gradient(top, #828282 0%,#ffffff 40%,#ffffff 60%,#ffffff 60%,#828282 100%);
    background: linear-gradient(to bottom, #828282 0%,#ffffff 40%,#ffffff 60%,#ffffff 60%,#828282 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#828282', endColorstr='#828282',GradientType=0 );
    width: 60px;
    text-align: center;
}

span.jp-prize{
    background: #000;
    border-radius: 15px;
    display: inline-block;
    padding: 5px 10px;
}

span.jp-prize b{
    color:#ff0;
}

.jackpot fieldset{
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    padding: 0 20px 8px 20px;
    color: #ababab;
    font-size: 12px;
    font-family: Tahoma;
    margin-top: 20px;
}

.jackpot fieldset legend{
    display: inline-block;
    width: auto;
    font-size: 14px;
    padding: 0 8px;
    margin-bottom: 0;
    border: none;
    color: #fff;
}
/*Calendar*/
.month {
    padding: 20px 0;
    width: 100%;
    background: #00000091;
    float: left;
    border-bottom: solid 1px #ffffff8c;
    height: 102px;
    position: relative;
}

.month h3 {
    margin: 0;
    display: inline-block;
    color: #fff;
}

.month-left {
    width: 15%;
    padding: 0 20px;
    float: left;
    white-space: nowrap;
}

.month-right {
    width: 75%;
    padding: 0 20px;
    float: left;
}

.weekdays {
    margin: 0;
    padding: 10px 0;
    background-color: #ffffff1a;
    float: left;
    width: 100%;
    list-style: none;
}

.weekdays li {
    width: 14.2857%;
    text-align: left;
    float: left;
    height: 20px;
    text-indent: 10px;
}

.days {
    padding: 0;
    margin: 0;
    box-shadow: inset -1px -1px 0 0 rgba(255, 255, 255, 0.1);
    display: inline-block;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.days li {
    list-style-type: none;
    float: left;
    width: 14.2857%;
    text-align: left;
    text-indent: 5px;
    margin-bottom: 0;
    height: 100px;
    position: relative;
    box-shadow: inset 1px 1px 0 0 rgba(255, 255, 255, 0.1);
    font-family: Verdana;
    white-space: nowrap;
}

.days li.active {
    box-shadow: inset 0 0 0 1px #81ce3e;
}

.bg-event{
    background-color: rgba(255, 212, 48, 0.3);
}

.bg-event-2 {
    background-color: rgba(255, 106, 0, 0.5);
}

.bg-event-3 {
    background-color: rgba(21, 244, 255, 0.5);
}

.bg-hot{
    background-color: rgba(255, 48, 48, 0.6);
}

.bg-discount {
    background-color: rgba(158, 255, 21, 0.5);
}

.pubg-c{
    background-image: url("../img/daily/pubg.png");
    background-size: 80%;
    background-position: center 5px;
    background-repeat: no-repeat;
}

.noel-c{
    background-image: url("../img/daily/noel.png");
    background-size: 80%;
    background-position: center 5px;
    background-repeat: no-repeat;
}

.dl-img {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 3px 8px;
}

.dl-des {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.dl-des span{
    display: block;
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 11px;
    margin-top: 1px;
    text-shadow: 0 1px 1px #000;
}

.dl-prize {
    position: relative;
    top: -18px;
    width: 100%;
    text-align: center;
}

.dl-prize span{
    position: relative;
    display: inline-block !important;
    left: 0 !important;
    bottom: 0 !important;
    margin-left: -2px;
}

span.checked{
    background: url("../img/daily/check.png") no-repeat center;
    height: 32px;
    width: 32px;
    background-size: 100%;
    display: block;
    top: 1px;
    right: 1px;
    position: absolute;
}

span.dl-10{
    background: url("../img/daily/10.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.dl-20{
    background: url("../img/daily/20.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.dl-30{
    background: url("../img/daily/30.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.pubg-c{
    background: url("../img/daily/pubg-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.battle-c{
    background: url("../img/daily/battle-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.steam-c{
    background: url("../img/daily/steam-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.logi-c{
    background: url("../img/daily/logi-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.jp-c{
    background: url("../img/daily/jp-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.jp-c b {
    text-align: center;
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 2px #000, 0 0 2px #000, 0 2px 1px #000;
}

span.remmy-c{
    background: url("../img/daily/rm-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.t2tr-c{
    background: url("../img/daily/2tr-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.t5tr-c{
    background: url("../img/daily/5tr-c.png") no-repeat center;
    height: 48px;
    width: 48px;
    background-size: 100%;
    display: block;
    bottom: 5px;
    left: 5px;
}

span.disable{
    filter: grayscale();
    opacity: 0.5;
}

.fb-calen {
    right: 15px;
    width: 250px;
    background: transparent;
    left: inherit;
    top: 15px;
    border-bottom: #fff 1px solid;
}

.text-default{
    color: #ffe424 !important;
}

#tiles{
    font: 11px Tahoma;
    background: #000000ad;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    right: -170px;
    bottom: 7px;
    padding: 2px 5px;
}

#tiles > span{
    color: #99ff15;
    float: inherit;
    display: inline-block;
    padding: 0;
    margin: 0;
}

.btn-baodanh {
    display: block;
    padding: 3px 0;
    margin: 8px 0;
    border-color: #a23737;
}

.modal-prize {
    width: auto;
    text-align: center;
    max-width: 800px;
}

.modal-prize .modal-content{
    background: transparent;
    box-shadow: none;
    border: none;
}

.logout-dl{
    background: #000000ad;
    border-radius: 20px;
    font-size: 10px;
    padding: 3px 12px;
    color: #a5a5a5;
    font-family: Tahoma;
}


/*Modal*/
.modal-content p{
    line-height: inherit;
    padding: 0;
    color: #ddd;
}

.modal-content .btn:hover,.modal-content  .btn:focus{
    border-color: inherit;
    background-color: inherit;
}

.modal-content .form-control{
    background: #0c0e10;
    border-color: #25272b;
}

/*GC List*/
.gc-listing{
    color: #fff;
}

.gc-listing h3{
    color: #fff;
}

.gc-listing h3 b{
    color: #fff;
}

/* GCP List */
.acc-pd{
    padding-left: 5%;
}
.accordion:hover .accordion-item:hover .accordion-item-content,
.accordion .accordion-item--default .accordion-item-content {
    height: auto;
}

.accordion-item-content,
.accordion:hover .accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height .25s;
    margin-top: 10px;
}

.accordion {
    padding: 0;
    margin: 0;
    width: 100%;
}

.accordion .accordion-item {
    background-image: linear-gradient(90deg, #eeeeeede, #f5f5f580, #fff0);
    border-bottom: 1px solid #fff;
    padding: 1em;
}

.accordion .accordion-item .icon{
    color: #ff585d;
    font-size: 22px;
}

.accordion h3 {
    margin: 0;
    font-size: 20px;
}


