/*
 * Tikkie.me - http://www.tikkie.me
 *
 * NOTICE OF LICENSE
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to info@magmodules.eu so we can send you a copy immediately.
 *
 * @category      Tikkie
 * @package       Tikkie_Fastcheckout
 * @author        Magmodules <info@magmodules.eu>
 * @copyright     Copyright (c) 2018 (http://www.magmodules.eu)
 * @license       http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

.tikkie-fastcheckout-button {
    clear: left;
    vertical-align: top;
}

.tikkie-fastcheckout-button img {
    width: 175px;
    margin: 2px auto;
}

.checkout-types.top .tikkie-fastcheckout-button img {
    margin: 0 auto;
}

.checkout-types.bottom .tikkie-fastcheckout-or {
    display: table-caption;
    text-align: center;
    width: 180px;
    margin-left: 15px;
}

.checkout-types.top .tikkie-fastcheckout-or {
    display: inline;
    margin: 10px;
}

.tikkie-fastcheckout-or {
    line-height: 34px;
    text-align: center;
    display: block;
}

@media only screen and (max-width: 740px) {
    .checkout-types.top .tikkie-fastcheckout-or {
        line-height: 20px;
        display: block;
    }

    .checkout-types.bottom .tikkie-fastcheckout-or {
        display: block;
        width: auto;
    }
}

.tikkie-popup-close {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 0;
    top: 0;
    bottom: 0;
}

.tikkie-fastcheckout {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #6868C1;
    width: 100%;
    text-align: center;
    padding: 10%;
}

.tikkie-fastcheckout .loading-block h1 {
    font-size: 19.6px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: normal;
    color: #FFF;
    margin-bottom: 26px;
    text-align: center;
    text-transform: none;
}

.tikkie-fastcheckout .loading-block h1::before {
    content: "";
    background-image: url('../logos/tikkie-app-logo.png');
    background-size: 180px;
    background-repeat: no-repeat;
    height: 70px;
    margin-bottom: 30px;
    width: 180px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tikkie-fastcheckout .loader {
    border: 16px solid #FFFFFF;
    border-top: 16px solid #61D3C8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}