/***********************************************************************************************************************
    Basic
**************************************/

html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 1.4;
}

body {
    overflow: hidden;
    color: #EFF5FA;
    background-color: #1D283E;
}

a,
a:hover,
a:visited,
a:active {
    color: #EFF5FA;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    padding-top: 0;
    margin-top: 0;
}

.wrapper {
    height: 100%;
    background: url("https://static.pricefx.com/classic/login/4.0-manhattan/pfx-01.jpg") no-repeat 50%;
    background-size: cover;
}

#post-template {
    display: none;
}

.read-more {
    text-transform: uppercase;
    color: #00B5CE;
    font-weight: bold;
}

/***********************************************************************************************************************
    RSS Feeds
**************************************/

#rss-feeds {
    height: 100%;
}


/***********************************************************************************************************************
    Button
**************************************/

.button,
.button:hover,
.button:active,
.button:visited {
    padding: 8px;
    text-decoration: none;
    text-transform: uppercase;
    color: #EFF5FA;
}

.button {
    background-color: #00B5CE;
}

.button:hover {
    background-color: #7FD8E5;
}

.button:active {
    background-color: #00B5CE;
}


/***********************************************************************************************************************
    Carousel
**************************************/

.jcarousel-wrapper {
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.jcarousel {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 20000em;
    height: 100%;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    height: 100%;
    float: left;
}

.jcarousel-item {
    display: none;
    height: 100%;
    background: no-repeat 50% -70px;
    background-size: cover;
    position: relative;
}

.jcarousel-item .container {
    position: absolute;
    padding: 16px 16px 60px;
    bottom: 0;
    background-color: #1D283E;
    opacity: .8;
    width: 100%;
}

.jcarousel-item .title,
.jcarousel-item .body {
    opacity: 0.8;
}

.jcarousel-item .title {
    font-size: 1.2em;
    font-weight: bold;
}

.jcarousel-item .body {
    font-size: 1.1em;
}

.jcarousel-item:nth-child(1) {
    background-image: url("https://static.pricefx.com/classic/login/4.0-manhattan/pfx-01.jpg");
}

.jcarousel-item:nth-child(2) {
    background-image: url("https://static.pricefx.com/classic/login/4.0-manhattan/pfx-02.jpg");
}

.jcarousel-item:nth-child(3) {
    background-image: url("https://static.pricefx.com/classic/login/4.0-manhattan/pfx-03.jpg");
}

/** Carousel Controls **/

a.jcarousel-control-prev,
a.jcarousel-control-next,
a.jcarousel-control-prev:hover,
a.jcarousel-control-next:hover,
a.jcarousel-control-prev:active,
a.jcarousel-control-next:active {
    position: absolute;
    top: 50%;
    margin-top: -26px;
    width: 32px;
    height: 52px;
    text-align: center;
    background: #1D283E;
    color: #EFF5FA;
    text-decoration: none;
    font-size: 32px;
    cursor: pointer;
}

a.jcarousel-control-prev,
a.jcarousel-control-next {
    opacity: 0;
}

a.jcarousel-control-prev {
    left: 16px;
}

a.jcarousel-control-next {
    right: 16px;
}

a.jcarousel-control-prev:hover,
a.jcarousel-control-next:hover {
    opacity: 1;
}

a.jcarousel-control-prev.inactive,
a.jcarousel-control-next.inactive {
    opacity: 0.3;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -19px;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    font-size: 0;
    text-align: center;
    margin-right: 4px;
    height: 4px;
    width: 8px;
    opacity: 0.5;
    background-color: #EFF5FA;
    color: #EFF5FA;
}

.jcarousel-pagination a.active {
    opacity: 1;
}


/***********************************************************************************************************************
    Progress
**************************************/

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    display: block;
    width: 100%;
    background-color: transparent;
    background-clip: padding-box;
    overflow: hidden;
    z-index: 1;
}

.progress .determinate {
    position: absolute;
    background-color: inherit;
    top: 0;
    bottom: 0;
    background-color: #00B5CE;
    transition: width .3s linear;
}

.progress .indeterminate {
    background-color: #00B5CE;
}

.progress .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}