// Layout

.page-wrapper {
	position: relative;
	transition: transform .25s;
/*    transform: translateX(0);*/

	.mmenu-active & {
		transform: translateX(250px);
	}
}
.container {
    max-width: $mainContainer;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    @media screen and (max-width: 1024px){
        padding-left: 15px;
        padding-right: 15px;
    }
}
.main {
	flex: 1 1 auto;
}
.gutter-lg {
    margin-bottom: 100px;
    @media screen and (max-width: 1024px) {
        margin-bottom: 80px;
    }
    @media screen and (max-width: 768px) {
        margin-bottom: 50px;
    }
    @media screen and (max-width: 375px) {
        margin-bottom: 30px;
    }
}
.gutter-md {
    margin-bottom: 50px;
    @media screen and (max-width: 375px) {
        margin-bottom: 30px;
    }
}
.row {
	margin-left: -10px;
	margin-right: -10px;
}

[class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.row-sparse {
	margin-left: -15px;
	margin-right: -15px;

	& > [class*="col-"] {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.row-joined {
	margin-left: 0;
	margin-right: 0;

	& > [class*="col-"] {
		padding-left: 0;
		padding-right: 0;
	}
}

.container :not(.sticky-header) > .container,
.container :not(.sticky-header) > .container-fluid {
	padding-left: 0;
	padding-right: 0;
}

.ajax-overlay {
	display: flex;
	display: -ms-flexbox;
	align-items: center;
	-ms-flex-align: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(68,70,69,0.65);
	z-index: 1041;
}

@include mq(xl) {
	.col-xl-5col {
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}

	.col-xl-7col {
		-ms-flex: 0 0 14.2857%;
		flex: 0 0 14.2857%;
		max-width: 14.2857%;
	}

	.col-xl-8col {
		-ms-flex: 0 0 12.5%;
		flex: 0 0 12.5%;
		max-width: 12.5%;
	}

	.row-xl-tight {
		margin-left: -5px;
		margin-right: -5px;

		& > [class*="col-"] {
			padding-left: 5px;
			padding-right: 5px;
		}
	}
}

@include mq(lg, max) {
	.container {
		max-width: none;
	}
}

@include mq(md) {
	.row-md-tight {
		margin-left: -5px;
		margin-right: -5px;

		& > [class*="col-"] {
			padding-left: 5px;
			padding-right: 5px;
		}
	}
}

@include mq(md, max) {
    html {
        font-size: 9px;
    }
}

.add-to-cart-box{
    /* Chrome, Safari, Edge, Opera */
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

}

.loader {
    position: relative;
    overflow: hidden;

    &:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgba(#fff, 60%);
        z-index: 4;
    }

    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        height: 50px;
        width: 50px;
        background: url('/images/icons/loader.svg') no-repeat;
        z-index: 5;
    }
}

.bounce-loader  {
    animation: rotate 1s infinite;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -35px;
    transition: all .2s;
    text-align: center;
    z-index: 10000;
}

.bounce-loader:before,
.bounce-loader:after {
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    width: 20px;
}
.bounce-loader:before {
    animation: ball1 1s infinite;
    background-color: #DA2A2E;
    box-shadow: 30px 0 0 #F4C12E;
    margin-bottom: 10px;
}
.bounce-loader:after {
    animation: ball2 1s infinite;
    background-color: #006699;
    box-shadow: 30px 0 0 #83BC41;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(0.8);
        -moz-transform: rotate(0deg) scale(0.8);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.2);
        -moz-transform: rotate(360deg) scale(1.2);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(0.8);
        -moz-transform: rotate(720deg) scale(0.8);
    }
}

@keyframes ball1 {
    0% {
        box-shadow: 30px 0 0 #F4C12E;
    }
    50% {
        box-shadow: 0 0 0 #F4C12E;
        margin-bottom: 0;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #F4C12E;
        margin-bottom: 10px;
    }
}

@keyframes ball2 {
    0% {
        box-shadow: 30px 0 0 #83BC41;
    }
    50% {
        box-shadow: 0 0 0 #83BC41;
        margin-top: -20px;
        -webkit-transform: translate(15px,15px);
        -moz-transform: translate(15px, 15px);
    }
    100% {
        box-shadow: 30px 0 0 #83BC41;
        margin-top: 0;
    }
}
//for returnForm page page
.file-letter-box {

    .textProductInfo {
        font-size: 16px;
        font-weight: 600;
        color: black;
        line-height: 25px;
        letter-spacing: 0.1px;
        padding-bottom: 16px;

        &.history {
            padding-left: 20px;
        }
    }

    .divSend {
        padding: 20px;
        border-radius: 3px;
        box-shadow: 0 0 10px 0px #c7c6c6;
        margin-bottom: 16px;

        .SendButton {
            width: 120px;
            height: 42px;
            font-size: 16px;
            padding: 10px;
        }
    }

    table, tr, {
        border: 2px solid #F1F1F1;

    }

    table {
        &.tableSendFile {
            width: 100%;
            tr {
                @include mq(md, max) {
                    font-size: 14px;
                }
            }
        }
        tr {
            height: 50px;
            font-size: 16px;
            font-weight: 500;

            td {
                padding-left: 20px;
                @include mq(md,max) {
                    padding-left: 10px;
                }

                a {
                    font-weight: 600;
                    text-decoration: underline;
                }

                &.downloadline {
                    span{
                        word-break: break-all;
                    }
                    display: flex;
                    justify-content: space-between;
                    flex-wrap: wrap;
                    @media screen and (max-width: 768px) {
                        flex-direction: column;

                    }
                }
            }
        }

        th {
            height: 40px;
            background-color: #FAFAFA;
            font-weight: 600;
            color: #3F3F3F;
            padding-left: 20px;
            @include mq(md,max) {
                padding-left: 10px;
            }
        }
    }

    .buttonBox {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;

        .addButton {
            height: 42px;
            font-size: 16px;
            padding: 10px;
            background-color: #006699;
            color: white;
            border-radius: 5px;

        }
    }

    @media screen and (max-width: 375px) {
        font-size: 14px;
        .textProductInfo, .divSend .SendButton, table tr, .addButton{
            font-size: 14px!important;
        }
    }
}

.liquid_container{
    padding-bottom: 15px;
}
.div_see_more{
    display: flex;
    justify-content:flex-end;
    a{
        padding-right: 0 !important;
    }
}


.not-mobile{
    display: none;
}
@media screen and (max-width: 991px) {
    .not-mobile{
        display: inline-block;
    }
    .not-window{
        display: none;
    }
}
