/*
	@description: Buraya Ã¶zel layoutler ve componentler yazÄ±labilir 
*/

*:focus {
    outline: none !important;
}

svg path {
    fill: currentColor;
}

svg.icon {
    pointer-events: none;
    display: inline-block;
    fill: currentColor;
    height: 1rem;
    stroke: currentColor;
    stroke-width: 0;
    vertical-align: middle;
    width: 1rem;
    overflow: hidden;
}

.ic--arrow {
    width: 9.829px;
    height: 6.714px;
}

.ic--plus {
    width: 16px;
    height: 16px;
}


/* Grid */

.gutter-5 {
    margin-left: -5px;
    margin-right: -5px;
}

.gutter-5>[class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.gutter-10 {
    margin-left: -10px;
    margin-right: -10px;
}

.gutter-10>[class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

.position-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.fancybox {
    overflow: hidden;
    display: block;
    position: relative;
}

.fancybox img {
    width: 100%;
}

.fancybox-active #header,
.fancybox-active #main,
.fancybox-active #footer {
    filter: blur(3px);
}

.fancybox-video .overlay-icon {
    opacity: 1;
}

.fancybox-slide--pdf .fancybox-content {
    max-width: 1600px;
}


/*=====================================
* BUTTONS
=====================================*/

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

button,
input,
select,
textarea {
    border-radius: 0;
    -webkit-border-radius: 0;
}

.btn {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    box-sizing: border-box;
    /*padding: 12px 1.5rem;*/
    vertical-align: middle;
    margin: 0;
    border: 1px solid transparent;
    overflow: visible;
    border-radius: 1.5rem;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    text-transform: none;
    background-color: transparent;
    text-decoration: none;
    transition: .3s ease-in-out;
    transition-property: color, background-color, border-color;
}

.btn-block {
    width: 100%;
}

.btn-link,
.btn-link:hover,
.btn-link:focus {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn .icon {
    transition: all 0.3s;
}

.btn span+span {
    margin-left: 10px;
}

.btn .text+.icon {
    margin-right: 0;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-outline-white {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-white:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-secondary {
    color: #272625;
    border-color: #DEC5AD;
}

.btn-outline-secondary:hover {
    color: #272625;
    border-color: #DEC5AD;
    background-color: #DEC5AD;
}


/*=====================================
* INPUT & SELECT
=====================================*/

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    margin-bottom: 5px;
    display: block;
}

.input,
.select,
.textarea {
    max-width: 100%;
    width: 100%;
    padding: 12px 1rem;
    line-height: 20px;
    font-weight: 400;
    background-color: #fff;
    color: #000000;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    transition: .3s ease-in-out;
    transition-property: color, background-color, border;
}

.select {
    background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.textarea {
    min-height: 8rem;
    resize: none;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: #272625;
}

.input::placeholder,
.textarea::placeholder,
.select::placeholder {
    color: #7E7E7E;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 2rem;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    font-weight: 500;
    vertical-align: top;
    color: #747A8D;
}

.custom-control-label::before {
    position: absolute;
    top: -3px;
    left: -2rem;
    display: block;
    width: 22px;
    height: 22px;
    pointer-events: none;
    content: "";
    border-radius: 0;
    background-color: transparent;
    border: 2px solid #D0D0D0;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
}

.custom-control-label::after {
    position: absolute;
    top: -3px;
    left: -2rem;
    display: block;
    width: 22px;
    height: 22px;
    content: "";
    background: no-repeat 50%/50% 50%;
    transition: all 0.15s ease-in-out;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 0;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #747A8D;
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23021850' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}

.input-wrap .input {
    padding-left: 3rem;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    left: 1rem;
}

.input-label {
    color: #AAAAAA;
    padding: 0 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    left: 3rem;
    pointer-events: none;
    text-overflow: ellipsis;
    -webkit-transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input-wrap .input:focus~.input-label,
.input-wrap .input.error~.input-label,
.input-wrap .input.success~.input-label,
.input-wrap .input:valid~.input-label,
.input-wrap .input:not(:empty)~.input-label,
.input-wrap .input:not([value=""]):not(:focus):invalid~.input-label {
    transform: scale(.80) translateX(-25px) translateY(-46px);
    color: #000;
    background-color: #fff;
}

.input.error {
    border-color: #cc0000 !important;
}

.input-wrap .input.error~.input-label {
    color: #940023 !important;
}


/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition-duration: 0s;
}

.dropdown-item:hover {}

.dropdown-item.active {}

.dropdown-menu.show {
    display: block;
}


/* Scroll */

.em-scroll {
    position: relative;
    overflow: hidden;
}



.ps__rail-y,
.ps__thumb-y,
.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y:focus>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    width: 5px;
}

.ps--active-y>.ps__rail-y,
.ps--active-x>.ps__rail-x {
    background-color: #eee;
}

.ps__thumb-y,
.ps__rail-y:hover>.ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y,
.ps__thumb-x,
.ps__rail-x:hover>.ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background-color: #624FAE;
}


/* Tab */

.tab {
    list-style: none;
    margin: 0 -8px 1rem -8px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tab-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 8px;
}

.tab-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    padding: 1rem;
    text-align: center;
    background-color: #fff;
    border-bottom: 7px solid #EE7C00;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.tab-link__image {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 150px;
    margin-bottom: 1rem;
    pointer-events: none;
}

.tab-link__body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    pointer-events: none;
}

.tab-content {
    background-color: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.16);
}

.tab-body {
    padding: 1rem;
    display: none;
}

.tab-link.active {
    position: relative;
}

.tab-body.active {
    display: block;
}

.tab-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 1.5rem;
    background-color: #fff;
    z-index: 9;
}

.tab-body__title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #393939;
    text-align: center;
    margin-bottom: 1rem;
}

.em-scroll {
    position: relative;
    overflow: hidden;
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.scrollable {
    position: relative;
    overflow: hidden;
}

.mr-1 {
    margin-right: 5px;
}

.mr-2 {
    margin-right: 10px;
}

@media(max-width:991px) {}

@media(max-width:767px) {
    .tab {
        display: none;
    }
    .collapse-link {
        position: relative;
        width: 100%;
        font-size: 15px;
        line-height: 18px;
        font-weight: 500;
        padding: 12px 1rem;
        margin-bottom: 0;
        text-align: left;
        background-color: #fff;
        border-bottom: 7px solid transparent;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
        cursor: pointer;
    }
    .collapse-link::after {
        content: "";
        position: absolute;
        right: 1rem;
        top: 16px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6px 8px 6px;
        border-color: transparent transparent #393939 transparent;
    }
    .tab-body {
        display: block;
        padding: 0;
    }
    .tab-body__inner {
        padding: 1rem;
        display: none;
        background-color: #fff;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.16);
    }
    .tab-body.active .tab-body__inner {
        display: block;
    }
    .tab-body.active .collapse-link {
        border-bottom-color: #EE7C00;
    }
    .tab-body.active .collapse-link::after {
        transform: rotate(180deg);
        border-bottom-color: #EE7C00;
    }
}

@media(max-width:567px) {}

@media(min-width:768px) {
    .reverse-md> :first-child {
        order: 2;
    }
    .reverse-md> :last-child {
        order: 1;
    }
}

@media(min-width:992px) {}

@media(min-width:1200px) {}

@media(min-width:1680px) {}

@media(min-width:1900px) {}