﻿body {
    font-family: "Montserrat-Regular", sans-serif !important;
    overflow-x: hidden;
}

.pageAdvertisement {
    padding-top: 12vh;
    padding-bottom: 0;
}

.logo-container {
    position: absolute;
    top: 1%;
    left: 3%;
    width: 10%;
    cursor: pointer;
    z-index: 100;
}

* {
    margin: 0;
    padding: 0;
}

.radio-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #c1c1c1;
    cursor: pointer;
}

    .radio-custom.checked {
        background-color: #ee8502;
    }


.answer_input {
    text-align: left;
    border: 1px solid #c1c1c1;
    border-radius: 3px !important;
    padding-top: 5px;
    margin: 0vw 3vw;
    cursor: pointer; /* Farenin üstüne geldiğinde el işareti görünmesi için */
    padding-left: 10px;
}


.card-content {
    flex: 1;
    padding: 20px 30px;
    margin-bottom: 75px;
    overflow-y: auto;
    height: 350px;
}

.card-bottom-previous {
    position: absolute;
    bottom: 10px;
    left: 40%;
    transform: translateX(-40%);
}

.card-bottom-next {
    position: absolute;
    bottom: 10px;
    left: 60%;
    transform: translateX(-60%);
}

#msform {
    width: 70%;
    margin: 50px auto;
    text-align: center;
    position: relative;
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 8px;
        box-shadow: 0 0 5px 1px rgb(191 191 191 / 40%);
        box-sizing: border-box;
        width: 75%;
        margin: 0 3%;
        position: relative;
        height: 500px !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

        /*Hide all except first fieldset*/
        #msform fieldset:not(:first-of-type) {
            display: none;
        }

    /*inputs*/
    #msform input,
    #msform textarea,
    #msform select {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        color: #2C3E50;
        font-size: 13px;
    }




    /*buttons*/
    #msform .action-button {
        width: 100px;
        background: #ffb252;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 4px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

        #msform .action-button:hover,
        #msform .action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #ffb252;
            border-radius: 4px;
        }

@media screen and (max-width: 767px) {

    #msform .action-button {
        width: 85px;
        background: #ffb252;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 4px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 20px 5px;
    }
}

/*headings*/
.fs-title {
    font-size: 15px;
    /*text-transform: uppercase;*/
    color: #2C3E50;
    font-weight:bold;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}


/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar ul {
        padding-left: 0px !important;
    }

    #progressbar li {
        list-style-type: none;
        color: #3a3a3a;
        text-transform: uppercase;
        font-size: 9px;
        width: 70px;
        float: left;
        position: relative;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 23px;
            line-height: 20px;
            display: block;
            font-size: 10px;
            color: #fff;
            background: #3a3a3a;
            border-radius: 30px;
            padding: 2px;
            margin: 0 auto 10px auto;
        }


        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: #3a3a3a;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1;
            /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before,
        #progressbar li.active:after {
            background: #f5c487;
            color: #00353b;
        }

.price_input {
    height: 50px !important;
    width: 100% !important;
}

@media screen and (max-width: 900px) {

    .ustmenu {
        width: 99%;
        min-height: 90px;
        position: absolute;
        z-index: 1;
        padding-top: 8px;
        padding-bottom: 8px;
        background-color: #3b3a3a !important;
        border-radius: 10px !important;
        margin-top: 8px !important;
    }

    #msform {
        width: 85%;
        margin: 40px auto;
        text-align: center;
        position: relative;
    }

        #msform fieldset {
            background: white;
            border: 0 none;
            border-radius: 8px;
            box-shadow: 0 0 15px 1px rgb(121 87 0 / 40%);
            padding: 20px 10px;
            box-sizing: border-box;
            width: 100%;
            margin: 0px;
            position: relative;
        }

        #msform input, #msform textarea {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 3px;
            margin: 5px;
            box-sizing: border-box;
            color: #2C3E50;
            font-size: 13px;
            width: 93%;
        }


    .price_input {
        height: 50px !important;
        width: 93% !important;
    }

    .card-bottom-previous {
        position: absolute;
        bottom: 10px;
        left: 30%;
        transform: translateX(-30%);
    }

    .card-bottom-next {
        position: absolute;
        bottom: 10px;
        left: 70%;
        transform: translateX(-70%);
    }
}


@media screen and (max-width: 767px) {
    .ustmenu {
        padding: 2px !important;
    }

        .ustmenu .container {
            padding: 10px;
        }

        .ustmenu .sagmenu .girisyap {
            width: 90px;
            min-height: 50px;
            background: #fff;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #EE8502;
            font-size: 13px;
            float: right;
        }

        .ustmenu .sagmenu .hizmetver {
            width: 100px;
            min-height: 50px;
            background: #EE8502;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            font-size: 13px;
            float: right;
            margin-right: 7px;
        }

        .ustmenu .sagmenu .yardim {
            width: 55px;
            min-height: 50px;
            background: #fff;
            border-radius: 4px;
            float: right;
            margin-right: 7px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            display: none;
        }

        .ustmenu .logo img {
            max-width: 60%;
        }

        .ustmenu .sagmenu {
            float: right;
            padding-top: 5px;
        }

    .altmenu {
        top: 63%;
        width: 96px;
        z-index: 1000 !important;
    }

        .altmenu:hover {
            background-color: #e9e9e9;
        }

    .nav-pills {
        border: 1px solid gray;
        border-radius: 4px;
    }
}

@media (min-width: 250px) and (max-width: 767.98px) {
    .pageAdvertisement {
        padding-top: 12vh;
        padding-bottom: 0px;
    }
}

@media (min-width: 767.98px) and (max-width: 900px) {
    .pageAdvertisement {
        padding-top: 20vh;
        padding-bottom: 175px;
    }

    #msform fieldset {
        width: 100%;
    }

    .card-bottom-previous {
        position: absolute;
        bottom: 10px;
        left: 25%;
        transform: translateX(-25%);
    }
}

@media (min-width: 900px) and (max-width: 1000px) {
    .pageAdvertisement {
        padding-top: 20vh;
        padding-bottom: 175px;
    }

    #msform fieldset {
        width: 100%;
    }

    .card-bottom-previous {
        position: absolute;
        bottom: 10px;
        left: 25%;
        transform: translateX(-25%);
    }
}

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1550px) {
}
