.template_select {
    background: rgba(0,0,0,0);
    color: white;
    border: 1px solid white;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.template_select .custom_select {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    color: white;
    font-size: 1rem;
    padding: 10px 8px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.template_select .custom_select .text {
    font-size: 1.5rem;
}

.template_select .custom_select .v-shape {
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    display: inline-block;
    margin-bottom: 4px;
    transform: rotate(45deg);
    transform-origin: center;
    transition: all 0.7s ease;
}

.template_select .custom_select .v-shape.active {
    transform: rotate(225deg);
    margin-bottom: 0px;
    position: relative;
    top: 2px;
}

.template_select .custom_option {
    display: none;
    width: 100%;
    border-radius: 6px;
    background: white;
    margin-top: 4px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3);
}

.template_select .custom_option ul {
    padding: 0;
    margin: 0;
}

.template_select .custom_option ul li {
    color: black;
    font-size: 1.3rem;
    list-style: none;
    padding: 8px 10px;
    box-sizing: border-box;
}

.template_select .custom_option ul li:hover {
    background: #f5f5f5;
    color: #111;
    cursor: pointer;
}

.template_select .custom_option ul li:first-child:hover {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.template_select .custom_option ul li:last-child:hover {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

@media (min-width:1200px) {
    .template_select .custom_option {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* @media (min-width:1200px) {

} */