* {
    box-sizing: border-box;
}

html {
    background-color: #573558;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('/standalone-project-resource/plugin/images/background_image.png');
    background-size: cover;
}

a,
a:visited {
    color: #F28100;
}

.ixigo-inspire-logo {
    background-image: url('/standalone-project-resource/plugin/images/ixigo_inspire.png');
    background-size: contain;
    width: 200px;
    height: 100px;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.74);
}

.main-logo {
    margin-top: 30px;
}

.notchrome-section .container-div-heading {
    text-transform: capitalize;
}

.notchrome-section .container-div-mid,
.notdesktop-section .container-div-mid {
    color: rgba(255, 255, 255, 0.84);
}

.notchrome-section .ixigo-inspire-logo,
.notdesktop-section .ixigo-inspire-logo {
    width: 350px;
    height: 100px;
    margin-top: 30px;
}

.mobile {
    width: 600px !important;
}

.container {
    height: 100%;
    width: 980px;
    margin: auto;
    padding: 50px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.display-none {
    display: none;
}

.container-div {
    -vendor-animation-duration: .4s;
    font-size: 36px;
    color: white;
    margin-top: 50px;
}

.refer-section {
    margin-top: 20px;
}

.container-div-heading {
    font-weight: 300;
    text-transform: uppercase;
}

.download-section .container-div-heading {
    margin-bottom: 50px;
}

.refer-section .container-div-heading {
    margin-bottom: 14px;
}

.container-div-text {
    font-weight: 300;
    font-size: 19px;
    margin-top: 10px;
}

.refer-section .container-div-text {
    margin-top: 20px;
}

.container-div-mid {
    font-weight: 300;
    font-size: 28px;
}

.bold {
    font-weight: 600;
}

.fadeInUp .download-button {
    margin-top: 90px;
}

.button {
    display: inline-block;
    height: 70px;
    line-height: 70px;
    background-color: #F28100;
    text-transform: uppercase;
    padding: 0px 40px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 300;
}

.thankyou-refer {
    margin-top: 80px;
}

.refer-button {
    width: 300px;
    margin-top: 30px;
    font-size: 23px;
    line-height: 60px;
    height: 60px;
}

.boxed-code {
    display: inline-block;
    font-size: 60px;
    font-weight: 500;
    border-width: 5px;
    border-style: dashed;
    padding: 3px 18px;
    margin: 13px;
}

.copy-box-whole {
    background: white;
    color: black;
    font-size: 0px;
    height: 60px;
    line-height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 40px;
}

.copy-box {
    width: 700px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 0px 20px;
    font-size: 16px;
    box-shadow: inset -5px 6px 10px -4px rgba(136, 136, 136, 0.65);
}

.copy-button {
    width: 180px;
    display: inline-block;
    vertical-align: top;
    height: 60px;
    background-color: #F28100;
    color: white;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 25px;
    cursor: pointer;
}

.unique-link-box .container-div-mid {
    margin-top: 30px;
    font-size: 25px;
}

.share-on-div {
    text-transform: uppercase;
}

.share-icon {
    display: inline-block;
    width: 90px;
    height: 90px;
    border: solid;
    border-radius: 50%;
    margin: 30px 15px 0;
    cursor: pointer;
    font-size: 40px;
}

.share-icon .fa {
    line-height: 84px;
}

.share-icon:hover {
    color: #573558;
    background-color: #fff;
}

#login-modal {
    display: none;
}

.login-button {
    display: inline-block;
    width: 400px;
    background-color: black;
    height: 60px;
    margin: 30px 10px;
    border-radius: 3px;
    line-height: 56px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 100;
    overflow: hidden;
    cursor: pointer;
    margin-top: 60px;
}

.button-icon-left {
    display: inline-block;
    width: 70px;
    float: left;
    height: 60px;
    padding-top: 14px;
    font-size: 32px;
}

.login-facebook {
    background-color: #3b5998;
}

.login-facebook .button-icon-left {
    background-color: #375BA7;
}

.login-google {
    background-color: #dc4e41;
}

.login-google .button-icon-left {
    background-color: #C74438;
}

.spinner {
    margin: 0px auto 0;
    width: 100px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.spinner > div {
    background-color: white;
}

.tandc {
    text-align: right;
    font-size: 13px;
    color: white;
    padding-bottom: 60px;
}

.tandc a {
    color: white;
    text-decoration: none !important;
    cursor: pointer;
}

.copied .copy-button{
	background-color: #419826;
}
