html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
}

/* article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
                    display: block
                } */

/* body {
                    line-height: 1
                } */

/* ol,ul {
                    list-style: none
                } */

/* blockquote,q {
                    quotes: none
                } */

/* blockquote:before,blockquote:after,q:before,q:after {
                    content: '';
                    content: none
                } */

/* table {
                    border-collapse: collapse;
                    border-spacing: 0
                } */

/* body {
                    background: #efefef;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-family: "Inter", sans-serif;
                    font-weight: 400;
                    line-height: 1.5;
                    padding: 0 1em;
                    color: #081627;
                } */

input[type="search"],
input[type="tel"],
input[type="text"] {
    font-size: 1rem;
    border: 0;
    font-family: inherit;
    outline: none;
    color: inherit;
    margin: 0;
    padding: 0;
    /* width: auto; */
    /* max-width: 100%; */
}
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder {
    font-weight: 300;
    color: #6b7280;
}
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder {
    font-weight: 300;
    color: #6b7280;
}
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder {
    font-weight: 300;
    color: #6b7280;
}
input[type="search"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="text"]:-moz-placeholder {
    font-weight: 300;
    color: #6b7280;
}

:root {
    --border-radius: 0.75em;
    --border-color: #c3c3c3;
    --border-color-active: #0047a5;
    --dropdown-border-color: #eaeaec;
    --dropdown-trigger-background-color: #f3f5f9;
    --dropdown-trigger-hover-background-color: #e6eaf1;
    --input-error-color: #ff0000;
    --input-label-color: #85898f;
    --input-prefix-color: #656b73;
    --input-phonenumber-color: #081627;
    --list-item-hover-background: #f3f5f9;
}

.pn-select {
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-color: var(--border-color);
    display: grid;
    grid-template-columns: 4.5em 1fr;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-out;
    /* max-width: 20em; */
    /* width: 100%; */
    /* z-index: 1; */
    -webkit-box-shadow: 0 0 3px rgb(60 72 88 / 20%);
    box-shadow: 0 0 3px rgb(60 72 88 / 20%);
    border-radius: 30px;
    /* min-height: 50px; */
    font-size: var(--fontSizeBtn);
    padding: 10px 25px;
    background: #fff;
}
.pn-select:focus,
.pn-select:focus-within {
    border-color: var(--color-main);
    /* box-shadow: 0 0 2px 0 var(--border-color-active); */
}

.pn-dropdown {
    z-index:10;
    background: #ffffff;
    border-radius: var(--border-radius);
    border-width: 1px;
    border-style: solid;
    border-color: var(--dropdown-border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.135);
    opacity: 0;
    padding: 0 0.5em 0.5em;
    pointer-events: none;
    position: absolute;
    top: 140%;
    transform-origin: left top;
    transition: all 0.15s ease-out;
    width: 100%;
    visibility: hidden;
}
.pn-select--open .pn-dropdown {
    pointer-events: all;
    transform: none;
    opacity: 1;
    top: 120%;
    visibility: visible;
}

.pn-search {
    position: relative;
    display: flex;
    border-bottom-width: 1px;
    border-style: solid;
    border-color: var(--dropdown-border-color);
    margin-bottom: 0.5em;
}
.pn-search svg {
    display: block;
    height: 1.25rem;
    left: 0.5em;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
}
.pn-search input[type="search"] {
    padding-left: 2.5rem;
    height: 3rem;
    width: 100%;
}
.pn-search input[type="search"]::-webkit-search-decoration,
.pn-search input[type="search"]::-webkit-search-cancel-button,
.pn-search input[type="search"]::-webkit-search-results-button,
.pn-search input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.pn-list {
    margin-right: -0.5em;
    max-height: 10.5em;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ffffff #ffffff;
    position: relative;
}
.pn-list::-webkit-scrollbar {
    width: 10px;
}
.pn-list:hover {
    --scrollbar-background: #ffffff;
    --thumb-background: #c0c4ca;
    scrollbar-color: var(--thumb-background) var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-track {
    background: var(--scrollbar-background);
}
.pn-list:hover::-webkit-scrollbar-thumb {
    background-color: var(--thumb-background);
    border-radius: 6px;
    border: 3px solid var(--scrollbar-background);
}
.pn-list--no-scroll {
    margin-right: 0;
}

.pn-selected-prefix {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0;
    outline: none;
    padding: 0;
    transition: background 0.2s ease-out;
}
/* .pn-selected-prefix:hover,
                .pn-selected-prefix:focus {
                    background: var(--dropdown-trigger-hover-background-color);
                } */
.pn-selected-prefix__flag {
    height: auto;
    width: 1.25rem;
}
.pn-selected-prefix__icon {
    display: block;
    height: 1.25rem;
    margin-left: 0.5em;
    margin-right: -0.25em;
    transition: all 0.15s ease-out;
    width: 1.25rem;
}
.pn-select--open .pn-selected-prefix__icon {
    transform: rotate(180deg);
}

.pn-input {
    display: flex;
    align-items: center;
}
.pn-input__container {
    display: flex;
    flex-direction: row;
}
.pn-input__label {
    color: var(--input-label-color);
    font-size: 0.7rem;
    position: relative;
    top: -0.25em;
}
.pn-input__error {
    bottom: 0;
    color: var(--input-error-color);
    font-size: 0.785rem;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: all 0.2s ease-out;
    z-index: -1;
}
.pn-input input[type="text"] {
    background: transparent;
    position: absolute;
    color: var(--input-prefix-color);
    max-width: 3rem;
    pointer-events: none;
}
.pn-input input[type="tel"] {
    color: var(--input-phonenumber-color);
    padding-left: calc(calc(var(--prefix-length) * 1ch) + 1.5ch);
    font-weight: 500;
}
.pn-input input[type="tel"]:not(:-moz-placeholder-shown):invalid + .pn-input__error {
    opacity: 1;
    transform: translateY(175%);
}
.pn-input input[type="tel"]:not(:-ms-input-placeholder):invalid + .pn-input__error {
    opacity: 1;
    transform: translateY(175%);
}
.pn-input input[type="tel"]:not(:placeholder-shown):invalid + .pn-input__error {
    opacity: 1;
    transform: translateY(175%);
}

.pn-list-item {
    align-items: center;
    border-radius: 0.5em;
    display: flex;
    font-weight: 400;
    padding: 0.6em 0.75em;
    transition: background-color 0.2s ease-out;
    cursor: pointer;
    outline: none;
}
.pn-list-item__flag {
    width: 1.25em;
    height: auto;
    margin-right: 1em;
    display: block;
}
.pn-list-item__country {
    margin-right: 0.25em;
}
.pn-list-item:hover,
.pn-list-item:focus {
    background-color: var(--list-item-hover-background);
}
.pn-list-item--selected {
    pointer-events: none;
    font-weight: 500;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23103155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-position: right 0.75em top 50%;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    background-position: right 0.75em top 50%;
}
.pn-list-item--no-results {
    pointer-events: none;
}

.dribble-creds {
    bottom: 2em;
    font-size: 0.875rem;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
}
.dribble-creds a {
    color: #ea4c89;
    text-decoration: underline;
}
