/* Lato Font */
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 400;
    src: url("lato/font.16bd2db37acebe735e0e21b921fbbd02.woff2") format("woff2"),
         url("lato/font.cbdddd82da22c6cbdd41ea4342266abf.woff") format("woff");

}
@font-face {
    font-family: Lato;
    font-style: normal;
    font-weight: 500;
    src: url("lato/font-bold.0c834ae5ad0f21a5fa64d035a37e8d96.woff2") format("woff2"),
    url("lato/font-bold.cf67e25500295a4b7bbc85dbf9868169.woff") format("woff");
}

@font-face {
    font-family: Lato;
    font-style: italic;
    font-weight: 400;
    src: url("lato/font-italic.b324c96fe9839368c43fda6220430492.woff2") format("woff2"),
         url("lato/font-italic.607cf83215a4cf29fc915aed627ba9ca.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body { 
    font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, Roboto, Arial, Verdana, Tahoma, "Sans Serif";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1px;
    color: #111;
    background: #FFF;
    overflow: hidden;
}

h2 {
    max-width: 600px;
    margin: 0 auto 19px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
}

p {
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
}

a {
    color: #1e81bd;
    text-decoration: none;
    cursor: pointer;
    outline: 0;
}

a:hover {
    color: #3aa3e3;
    text-decoration: underline;
}

.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 42px;
    padding: 0 24px;
    background: #f2f5f7;   
}

.zc-ideLogo {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/zoho-code-logo.f435fa71173e16041fb0689f9ef0e25d.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
}

.zc-content {
    position: absolute;
    left: 0px;
    top: 42px;
    right: 0px;
    bottom: 0px;
    background: #fff;
    overflow: auto;
}

.zc-pageContent {
    position: relative;
    display: flex;
    min-height: calc(100vh - 94px);
}

.zc-errorPage {
    display: flex;
    width: 730px;
    height: auto;
    margin: 5px auto;
    text-align: left;
    margin-top: 80px;
}

.zc-errorImage {
    width: 84px;
    height: 82px;
    margin: 0 40px 0 0;
    background-image: url(../images/empty-state-sprite.0fc762e65009023a42ee49727574f73e.svg);
    background-repeat: no-repeat;
}

.empty-prevError {
    background-position: -12px -192px;
    width: 84px;
    height: 82px;
}

.empty-urlError {
    background-position: -14px -294px;
    width: 88px;
    height: 69px;
}

.zc-errorReason {
    width: 600px;
}

.zc-secondaryMessage {
    font-size: 16px;
}

.zc-reasonList {
    margin: 18px 0;
}

.zc-reasonList ul {
    list-style: none;
}

.zc-reasonList li {
    margin-bottom: 12px;
}

.zc-reason {
    font-weight: 500;
    padding-bottom: 2px;
    font-size: 16px;
}

.footer {
    width: 100%;
    height: 52px;
    line-height: 52px;
    color: #777;
    font-size: 12px;
    text-align: center;
    background: #fff;
}

/* URL Updating */

.zc-prevLoading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.zc-prevLoader {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: -50px;
}

	/*--- LOADER ANIMATION ---*/

@-webkit-keyframes loadanim {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loadanim {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.zc-loader {
    display: inline-block;
    margin: 0;
    position: relative;
    top: 3px;
    left: -3px;
    width: 48px;
    height: 48px;
    text-indent: -9999em;
    border-radius: 50%;
    border-top: 3px solid #ededed;
    border-right: 3px solid #ededed;
    border-bottom: 3px solid #ededed;
    border-left: 3px solid #43c79d;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loadanim 0.8s infinite linear;
    -moz-animation: loadanim 0.8s infinite linear;
    -ms-animation: loadanim 0.8s infinite linear;
    -o-animation: loadanim 0.8s infinite linear;
    animation: loadanim 0.8s infinite linear;
}

.zc-prevLoadingText {
    font-size: 18px;
    line-height: 26px;
    max-width: 370px;
    margin-top: 25px;
    text-align: center;
}
