    .header-content,
    .mockup-group,
    .randomize-button-large,
    .slist li {
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, .08);
    }

    .slist,
    .sortable {
        list-style: none;
    }

    * {
        margin: 0;
        padding: 0;
    }

    *,
    ::after,
    ::before {
        box-sizing: border-box;
    }

  
    @media (max-width:768px) {
        body {
            font-size: 14px;
        }
    }

    @media (max-width:480px) {
        body {
            font-size: 12px;
        }
    }

   .clear:after {
        display: table;
        clear: both;
        content: '';
    }

    .paths {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        top: -9999px;
        left: -9999px;
        transform: translateZ(0);
    }

    .main-content {
        text-align: center;
        padding-top: 6em;
        margin: 0 2em 5em;
    }

    .main-content p,
    .mockup {
        margin: 2em auto;
    }

    .main-content p {
        max-width: 90ch;
    }

    .mockup-inputs {
        width: auto;
        margin-left: auto;
    }

 /**   @media screen and (min-width:600px) {
        .mockup {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
        }
    } */

    .mockup-group {
        margin: 10px 2em;
        border-radius: 3px;
        width: 415px;
        padding: 2px;
    }

    .mockup-single {
        margin: 5px 2em;
        display: flex;
        align-items: center;
    }

    .menu-buttons,
    .plus-button {
        margin-right: 2px;
    }

    .checkbox,
    .checkbox-text,
    .mockup-data {
        display: inline-block;
    }

    .mockup-group h4 {
        padding: 5px 16px;
    }

    .mockup-data {
        padding: 0 .4em;
        font-size: 14px;
        border-top: 5px solid transparent;
        margin-bottom: 5px;
        --field-padding: 12px;
        width: 100%;
        max-width: 420px;
        min-width: 250px;
        position: relative;
    }

    .input-length {
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        transition: color 1s ease-in-out;
        background-color: #31a738;
        color: #fff;
        right: 0.3em;
        padding: 14px 12px 14px 12px;
        border-radius: 0px 15px;
    }

    .mockup-data textarea {
        resize: vertical;
        min-height: 2em
    }

    .mockup-data input,
    .mockup-data textarea {
        -webkit-appearance: none;
        -ms-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: var(--field-padding);
        border-radius: 12px;
        outline: 0;
        font-size: 14px;
        width: 100%;
        overflow-y: hidden;
        background: 0 0;
        border: 2px solid #ddd;
        transition: border-color .3s;
    }

    .input-length.invalid {
        color: red;
    }

    .mockup-data input:has(~ .input-length),
    .mockup-data textarea:has(~ .input-length) {
        padding-right: 5px;
    }

    .mockup-data .placeholder {
        position: absolute;
        left: var(--field-padding);
        width: calc(100% - (var(--field-padding) * 2));
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        top: 22px;
        line-height: 100%;
        transform: translateY(-50%);
        color: #aaa;
        transition: top .3s, color .3s, font-size .3s;
        cursor: text;
    }

    .mockup-data .error-message {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 8px;
        font-size: 12px;
        background: #d30909;
        color: #fff;
        height: 24px;
    }

    .mockup-group .menu,
    .randomize-button-large,
    .result .rating {
        align-items: center;
        display: flex;
    }

    .checkbox .icon,
    .randomize-button img {
        width: 20px;
        height: 20px;
    }

    .mockup-data .error-message:empty {
        opacity: 0;
    }

    .mockup-data input+.placeholder,
    .mockup-data textarea+.placeholder {
        left: 15px;
        padding: 0 5px;
    }

    .mockup-data input.dirty,
    .mockup-data input:focus,
    .mockup-data input:not(:placeholder-shown),
    .mockup-data textarea.dirty,
    .mockup-data textarea:focus,
    .mockup-data textarea:not(:placeholder-shown) {
        border-color: #e2e2e2;
        transition-delay: 0.1s;
    }

    .mockup-data input.dirty+.placeholder,
    .mockup-data input:focus+.placeholder,
    .mockup-data input:not(:placeholder-shown)+.placeholder,
    .mockup-data textarea.dirty+.placeholder,
    .mockup-data textarea:focus+.placeholder,
    .mockup-data textarea:not(:placeholder-shown)+.placeholder {
        top: 0;
        font-size: 10px;
        color: #222;
        background: #fff;
        width: auto;
    }

    .mockup-checkbox {
        padding: 0 3em;
    }

    .checkbox {
        position: relative;
        padding: 20px 0 20px 30px;
        font-weight: 700;
        cursor: pointer;
    }

    .checkbox-text {
        font-size: .85em;
        transition: transform .1s cubic-bezier(.165, .84, .44, 1);
        user-select: none;
    }

    .checkbox:active .checkbox-text {
        transform: scale(.9);
    }

    .checkbox .icon {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .checkbox .icon::after,
    .checkbox .icon::before {
        content: "";
        display: block;
        position: absolute;
    }

    .checkbox .icon::before {
        height: 100%;
        width: 100%;
        border-radius: 100%;
        border: 2px solid currentColor;
        background: 0 0;
        transition: background .1s cubic-bezier(.165, .84, .44, 1);
    }

    .checkbox .icon::after {
        border: 3px solid transparent;
        transition: height .1s ease-in, width .1s ease-out .1s, border-color .1s cubic-bezier(.165, .84, .44, 1) .1s;
        width: 0;
        height: 0;
        bottom: 4px;
        left: 5px;
        border-radius: 4px;
        transform-origin: bottom left;
    }

    input[type=checkbox]:checked+.checkbox .icon::after {
        width: 8px;
        height: 14px;
        border-right-color: currentColor;
        border-bottom-color: currentColor;
        transition: width .1s ease-in, height .1s ease-out .1s, border-color .1s cubic-bezier(.165, .84, .44, 1);
    }

    input[type=checkbox]:checked+.checkbox .icon::before {
        background: rgba(9, 167, 41, .25);
    }

    .mockup-select {
        margin-left: 1em;
        margin-bottom: 1em;
    }

    select {
        width: 415px;
        padding-left: 10px;
        margin-left: -11px;
        position: relative;
    }

    .plus-button,
    .randomize-button {
        padding: 2px;
        background-color: transparent;
        color: #000;
        border: none;
        font-size: 2em;
        cursor: pointer;
    }

    .menu-buttons {
        margin-left: auto;
    }

    .randomize-button {
        margin-right: 5px;
    }

    .randomize-button-large {
        font-size: 1.3em;
        margin-top: 2em;
        background-color: #fff;
        color: #000;
        border: none;
        padding: .5em 1em;
        gap: 1em;
        cursor: pointer;
    }

    .randomize-button-large img {
        width: 30px;
        height: 30px;
    }

    .slist {
        padding: 0;
        margin: 0;
    }

    .slist li {
        margin: 10px;
        padding: 6px;
    }

    .slist li.hint {
        box-shadow: 0 2px 2px 0 #a5d2ff, 0 0 0 1px #a5d2ff;
        background-color: #a5d2ff20;
    }

    .slist li.active {
        box-shadow: 0 2px 2px 0 #a5ffc1, 0 0 0 1px #a5ffc1;
        background-color: #a5ffc120;
    }

    .badge,
    .desktop-view .search-engine input,
    .location-popup,
    .mobile-view .result,
    .mobile-view .search-engine input {
    min-height: 44px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 5px 1px rgba(64,60,67,.16);
    border-radius: 24px;
    margin: 0 auto;
        
    }

    .sortable li {
        display: flex;
        position: relative;
        align-items: center;
    }

    .sortable li .mockup-data {
        margin-left: 15px;
        position: relative;
    }

    .pin {
        cursor: pointer;
        margin-left: 10px;
        margin-right: 5px;
        position: relative;
        display: none;
    }

    .badge {
        position: absolute;
        right: -10px;
        bottom: -10px;
        background-color: #fff;
        padding: 5px 10px;
        border-radius: 50%;
    }

    .pin img {
        width: 28px;
        height: 28px;
    }

    .location-popup {
        position: absolute;
        z-index: 9999;
        flex-direction: column;
        background-color: #fff;
    }

    .file-picker,
    .mockup-result {
        align-items: center;
        display: flex;
    }

    .location-option {
        padding: .5em 1em;
        margin: 1em;
        cursor: pointer;
    }

    .draggable {
        top: 0;
        left: -10px;
        position: absolute;
        width: 16px;
        height: 100%;
        border: 1px solid #61CE70;
        border-right: none;
        border-radius: 3px 0 0 3px;
        cursor: grab;
        background: repeating-linear-gradient(-55deg, #fff, #fff 10px, #61CE70 10px, #61CE70 12px);
    }

    .draggable-2 {
        height: 94%;
    }

    .mockup-uneditable {
        padding: 12px 5px 12px 5px;
        font-size: 14px;
        background-color: #fff;
        border: 2px solid #e2e2e2;
        outline: 0;
    }

    .mockup-result {
        flex-direction: column;
        width: 700px;
        margin-right: auto;
    }

    .mockup-extra {
        margin: 5px 2em;
        border-radius: 3px;
    }

    .file-picker {
        gap: 1em;
        margin: 1em;
    }

    .file-picker input {
        display: none;
    }

    .file-picker label {
        border: 1px solid #e2e2e2;
        border-radius: 3px;
        cursor: pointer;
        padding: .5em 1em;
    }


    .desktop-view .search-engine .logo {
        width: 7em;
    }

    .desktop-view .icon {
        width: 16px;
    }

    .desktop-view .search-engine input,
    .mobile-view .search-engine input {
        padding: 10px 15px;
        border: 2px solid #e2e2e2;
    }

    .desktop-view .search-engine input:focus,
    .mobile-view .search-engine input:focus {
        outline: 0;
    }

    .desktop-view .search-engine input:focus+.search,
    .mobile-view .search-engine input:focus+.search {
        rotate: 360deg;
    }

    .desktop-view .search-engine .search {
        position: absolute;
        width: 23px;
        right: 0;
        cursor: pointer;
        margin: 8px;
        transition: rotate 750ms ease-in-out;
    }

    .desktop-view .search-engine::after {
        position: absolute;
        bottom: -10px;
        width: 100%;
        content: "";
        height: 1px;
        background: #33333320;
    }

    .desktop-view .result .google-path {
        color: #4d5156;
        font-family: arial, sans-serif;
        margin-top: -5px;
    }

    .desktop-view .result .google-link {
        display: block;
        text-decoration: none;
        color: #1a0dab;
        font-family: arial, sans-serif;
        max-width: 90ch;
        font-size: 20px;
    }

    .desktop-view .result .google-description,
    .mobile-view .result .google-description {
        color: #333;
        max-width: 90ch;
    }

    .desktop-view .result .site-links {
        white-space: nowrap;
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 20px;
    }

    .desktop-view .result .site-link a {
        color: #1a0dab;
        text-decoration: none;
        max-width: 25ch;
        width: 100%;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .desktop-view .result .affiliate-location,
    .desktop-view .result .location {
        display: flex;
        align-items: center;
        gap: 3px;
        color: #1a0dab;
    }

    .desktop-view .result .affiliate-location span,
    .mobile-view .result .affiliate-location span,
    .mobile-view .result .app span {
        max-width: 45ch;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .desktop-view .promotion {
        display: flex;
        align-items: center;
        gap: 3px;
        max-width: 90ch;
        flex-flow: wrap;
    }

    .desktop-view .result .promotion-occasion,
    .mobile-view .result .promotion-occasion {
        font-weight: 900;
    }

    .desktop-view .result .promotion span,
    .mobile-view .result .promotion span {
        max-width: 45ch;
        width: fit-content;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .desktop-view .result .call {
        color: #444;
    }

    .desktop-view .result .price {
        display: flex;
        gap: 1em;
        overflow: auto;
        width: 550px;
        padding: .5em .5em;
    }

    .desktop-view .result .price .price-extra,
    .mobile-view .result .price .price-extra {
        padding: 3px 6px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 0 1px rgba(0, 0, 0, .08);
        text-align: center;
        font-size: .85em;
        min-width: 115px;
    }

    .desktop-view .result .price .price-extra .header,
    .mobile-view .result .price .price-extra .header {
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

    .desktop-view .result .price .price-extra .header::after,
    .mobile-view .result .price .price-extra .header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: .5px;
        background-color: #33333333;
    }

    .desktop-view .result .price .price-extra .description,
    .mobile-view .result .price .price-extra .description {
        display: block;
        white-space: nowrap;
        max-width: 13ch;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .desktop-view .result .price .price-extra .amount,
    .desktop-view .result .price .price-extra .price-qualifier,
    .mobile-view .result .price .price-extra .amount,
    .mobile-view .result .price .price-extra .price-qualifier {
        display: inline-block;
    }

    .result .google-description {
        max-width: 50ch;
    }

    .result .callouts {
        max-width: 90ch;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        grid-template-columns: 1fr 1fr;
        font-size: .8em;
        color: #555;
    }

    .result .structuredsnippet {
        display: flex;
    }

    .result .rating svg {
        width: 18px;
        height: 18px;
    }

.mobile-view {
    margin-top: 3em;
    background-image: url(https://www.myclickguide.com/tools/images/phone.png);
    width: 650px;
    height: 1320px;
    padding: 90px 45px 80px 45px;
    overflow: hidden;
    background-repeat: no-repeat;
}

    .mobile-view .search-engine {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .mobile-view .search-engine .logo {
        width: 7em;
        margin: 2em auto 1em;
    }

    .mobile-view .search-engine .search {
        position: absolute;
        width: 23px;
        right: 0;
        bottom: 2px;
        cursor: pointer;
        margin: 8px;
        transition: rotate 750ms ease-in-out;
    }

    .mobile-view .result {
        margin-top: 1em;
        border: 2px solid #fff;
        border-radius: 6px;
    }

    .mobile-view .icon {
        width: 24px;
    }

    .mobile-view .result-part {
        padding: .3em .6em;
        background-color: #fff;
    }

    .mobile-view .result .ad {
        display: inline-block;
        font-weight: 900;
    }

    .mobile-view .result .google-path {
        display: inline-block;
        color: #4d5156;
        font-family: arial, sans-serif;
        margin-top: -5px;
    }

    .mobile-view .result .google-link {
        display: block;
        text-decoration: none;
        color: #1967d2;
        font-family: arial, sans-serif;
        max-width: 50ch;
        font-size: 20px;
    }

    .mobile-view .result .site-links {
        margin: 10px 0;
        white-space: nowrap;
        overflow: hidden;
        padding: 5px 0;
    }

    .mobile-view .result .site-link {
        border-radius: 3px;
        border-top: 1px solid #e2e2e2;
        padding: 3px 6px;
        width: auto;
        display: inline;
        margin-left: 5px;
        overflow: hidden;
        text-decoration: none;
        color: #1967d2;
		font-size: 20px;
    }

    .app-icon {
        width: 32px;
    }

    .mobile-view .result .promotion {
        display: flex;
        gap: 3px;
    }

    .mobile-view .result .promotion .lines {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .mobile-view .result .affiliate-location,
    .mobile-view .result .app,
    .mobile-view .result .call,
    .mobile-view .result .location,
    .mobile-view .result .message,
    .mobile-view .result .promotion .line {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .mobile-view .result .price {
        display: flex;
        gap: 1em;
        overflow: hidden;
    }
.site-header + .site-content .bg-box.top-area {
    margin-top: -130px;
}
.desktop-view {
    box-shadow: 1px 1px 1px 1px #e2e2e2;
    padding: 20px;
}
input {
    display: inline-grid;
}
.desktop-sponsored {
    background-color: transparent;
    color: #202124;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    margin-left: 0px;
    white-space: nowrap;
}
  /* SEARCH ENGINE START */

  .desktop-view .search-engine {
    /* ADJUST THE WIDTH */
    width: 720px;
    position: relative;
    margin-bottom: 1em;
  }

  .desktop-view .search-engine .input {
    display: flex;
    align-items: center;
    gap: 1em;
    position: relative;
    width: fit-content;
    margin-bottom: 15px;
  }

  .desktop-view .search-engine .logo {
    width: 7em;
  }

  .desktop-view .search-engine .icons {
    position: absolute;
    right: 0;
    display: flex;
    gap: 10px;
    margin-right: 10px;
  }

  .desktop-view .search-engine .divider {
    border-left: 1px solid #5f6368;
  }

  .desktop-view .search-engine .icon {
    width: 20px;
    height: 20px;
  }

  .desktop-view .search-engine input {
    padding: 10px 15px;
    box-shadow: 0 1px 3px rgba(23, 23, 23, 0.24);
    border-radius: 24px;
    border: 2px solid #e2e2e2;
    /* ADJUST THE WIDTH */
    width: 537px;
  }

  .desktop-view .search-engine::after {
    position: absolute;
    bottom: -10px;
    width: 100%;
    content: "";
    height: 1px;
    background: #33333320;
  }

  .desktop-view .search-engine .links {
    display: flex;
    gap: 0.5em;
  }

  .desktop-view .desktop-view .search-engine .link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #dadce0;
    box-sizing: border-box;
    border-radius: 20px;
    cursor: pointer;
    padding: .5em 1em;
  }

  .desktop-view .search-engine .keyboard {
    display: none;
    width: 19px;
    height: 11px;
    align-self: center;
  }

  .desktop-view .search-engine input:focus~.icons .cross {
    display: none;
  }

  .desktop-view .search-engine input:focus~.icons .keyboard {
    display: block
  }
 /* SEARCH ENGINE END */
.search-options {
    padding: 5px 20px 5px 20px;
    background: #fff;
    color: #202124;
    border: 1px solid #dadce0;
    box-sizing: border-box;
    border-radius: 20px;
    min-width: 38px;
    cursor: pointer;
}
.m-links {
    display: flex;
    gap: 5px;
}
.m-search-options {
    padding: 5px 12px 5px 12px;
    background: #fff;
    color: #202124;
    border: 1px solid #dadce0;
    box-sizing: border-box;
    border-radius: 20px;
    min-width: 38px;
    cursor: pointer;
}
.mobile-view .search-engine .input {
    display: flex;
    align-items: left;
    gap: 0.5em;
    position: relative;
    width: auto;
    margin-bottom: 15px;
}
.m-icons {
    position: absolute;
    right: 10px;
    top: 25%;
}
.result {
    margin-top: -8px;
}
.ad-logo {
    float: left;
    width: 25px;
    padding-top: 10px;
    padding-right: 5px;
}
.advertiser-name {
    color: #202124;
    font-size: 14px;
    display: block;
    line-height: 20px;
    white-space: nowrap;
    padding-top: 6px;
}
#url-path-2 {
    max-width: 75px;
 }
#url-path-1 {
    max-width: 75px;
 }
.placeholder-advt {
    float: left;
    position: absolute;
    top: -8px;
    margin-left: 10px;
    background-color: #fff;
    padding-left: 5px;
    padding-right: 5px;
}
.advert-name{
    padding: 0 0.4em;
    font-size: 14px;
    width: 435px;
    position: relative;
    margin-left: 25px;
}
.install-now {
    border: 1px solid #e2e2e2;
    padding: 5px;
    border-radius: 24px;
    max-width: 120px !important;
    text-align: center;
    color: #1967d2;
    font-size: 20px;
 }