<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rev_slider_wrapper,
.rev_slider {
  height: 870px !important;
}

.btn-style-one:disabled,
.btn-style-one.disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.65;
}

.satis-bilgi {
  /* border: 2px solid var(--theme-color1); */
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}
.police-sonuc .satis-bilgi {
  border: 4px solid var(--theme-color1);
}
.police-sonuc h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: var(--theme-color1);
}
.satis-input .form-control {
  border-radius: 10px;
  /* border: 1px solid #e4e1d5; */
  padding: 10px;
  height: 50px !important;
}

.satis-input .form-control:focus {
  border-color: var(--theme-color1);
  outline: 0;
  box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

/* input-group */
.satis-input .input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.satis-input .input-group-text:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

/* select */
.satis-input .custom-select {
  border-radius: 5px;
  border: 1px solid #ccc;
}

.satis-input .custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

/* checkbox ve radio */
.satis-input .form-check-input {
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.satis-input .form-check-input:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

.satis-input .form-check-label {
  margin-left: 1.5rem;
}

/* select2 */
.satis-input .select2-container .select2-selection {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
}

.satis-input .select2-container .select2-selection:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 5px rgba(128, 189, 255, 0.5);
}

.satis-input .select2-selection__rendered {
  line-height: 1.5;
}

.satis-input .select2-selection__arrow {
  height: 100%;
}

.satis-input .select2-dropdown {
  border-radius: 5px;
}

.satis-input .select2-results__options {
  padding: 0;
}

.paket-block {
  position: relative;
  margin-bottom: 30px;
}

.paket-block .inner-box {
  position: relative;
  border: 2px solid #e4e1d5;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.paket-block .inner-box:hover {
  border: 2px solid var(--theme-color1);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.paket-block .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

.paket-block .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgb(255, 255, 255))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",endColorstr="#00ffffff",GradientType=1 );
  content: "";
  opacity: 0.3;
  left: -100%;
  pointer-events: none;
  z-index: 1;
}

.paket-block .inner-box:hover .image:before {
  left: 100%;
  -webkit-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.paket-block .image img {
  width: auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.paket-block .inner-box:hover .image img {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.paket-block .content {
  position: relative;
  padding: 30px;
}

.paket-block .inner-box .content .paket-ozellik {
  text-align: left;
  font-size: 12px;
}

.paket-block h4 {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.paket-block h4 a {
  color: var(--headings-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.paket-block h4 a:hover {
  color: var(--theme-color1);
}

.paket-block .price {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--theme-color1);
  font-weight: 600;
}

.paket-block .price del {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px;
  color: red;
  line-height: 27px;
  opacity: 0.3;
}

.paket-block .rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  color: #ffc737;
}

.paket-block .tag {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
  background: #fd5f5c;
  font-weight: 400;
  padding: 0 12px;
  border-radius: 3px;
  z-index: 9;
  font-style: italic;
  text-transform: uppercase;
}

.paket-block .icon-box {
  position: absolute;
  right: 20px;
  top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.paket-block .inner-box:hover .icon-box {
  top: 20px;
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 300ms;
  transition-delay: 300ms;
}

.paket-block .ui-btn {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 9;
  background-color: var(--theme-color1);
  color: var(--theme-color-light);
  cursor: pointer;
  border-radius: 50px;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.paket-block .ui-btn:hover {
  background-color: var(--theme-color2);
  color: var(--theme-color-dark);
}

.paket-block .cat {
  display: block;
  font-size: 18px;
  color: #707070;
  font-style: italic;
  margin-bottom: 5px;
}

.paket-block .paket-sec-wrapper {
  display: inline-block;
}

.paket-block .paket-sec {
  display: none;
}

.paket-block .paket-sec + label {
  background-color: #fff;
  color: black;
  border: 1px solid #e4e1d5;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer !important;
  margin: 5px;
  display: inline-block;
  z-index: 10;
}

.paket-block .paket-sec:hover + label {
  background-color: #fff;
  border: 1px solid var(--theme-color1);
  color: var(--theme-color1);
  cursor: pointer;
}
.paket-block .paket-sec:checked + label {
  background-color: var(--theme-color1);
  border: 1px solid var(--theme-color1);
  color: white;
  cursor: pointer;
}

#smartwizard .secilen-paket {
    border: 2px solid var(--theme-color1) !important;
}

/* Modern Özet Kartları Stilleri */

#smartwizard .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}


    #smartwizard .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }


#smartwizard .card-body {
    padding: 25px;
}


#smartwizard .card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color1);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
}


    #smartwizard .card h4:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 60px;
        height: 2px;
        background-color: var(--theme-color1);
    }


#smartwizard .card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--theme-color1);
}


#smartwizard .card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    padding-bottom: 8px;
}


    #smartwizard .card p span {
        font-weight: 600;
        color: #333;
    }


        #smartwizard .card p span:first-child {
            color: #666;
            font-weight: 400;
        }


#smartwizard .card .row {
    margin-bottom: 10px;
}


#smartwizard .list-unstyled li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}


    #smartwizard .list-unstyled li:before {
        content: "✓";
        color: var(--theme-color1);
        margin-right: 10px;
        font-weight: bold;
    }


    #smartwizard .list-unstyled li:last-child {
        border-bottom: none;
    }

/* Kart Düzeni Responsive */
@media (max-width: 768px) {

    #smartwizard .card {
        margin-bottom: 20px;
    }


    #smartwizard .card-body {
        padding: 20px;
    }


    #smartwizard .card h4 {
        font-size: 18px;
    }
}

/* Kart başlık renkleri */

#smartwizard .card:nth-of-type(1) h4 {
    color: var(--theme-color1);
}


    #smartwizard .card:nth-of-type(1) h4:after {
        background-color: var(--theme-color1);
    }


#smartwizard .card:nth-of-type(2) h4 {
    color: #1cc88a;
}


    #smartwizard .card:nth-of-type(2) h4:after {
        background-color: #1cc88a;
    }


#smartwizard .card:nth-of-type(3) h4 {
    color: #f6c23e;
}


    #smartwizard .card:nth-of-type(3) h4:after {
        background-color: #f6c23e;
    }

/* Bilgi alanları iyileştirmeleri */

#smartwizard .card p span#musteriTcVkn,
#smartwizard .card p span#aracPlaka,
#smartwizard .card p span#paketAdi,
#smartwizard .card p span#paketFiyati {
    font-weight: 700;
}

/* Teminatlar listesi iyileştirmeleri */
#paketTeminatlar {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}
</pre></body></html>