/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

.cc__wrapper {
    display: flex;
}

.cc__label label {
	color: black;
}

.cc__pre {
    display: inline-block;
    background: #edeef0;
    min-width: 44px;
    border: 1px solid #d2d3d6;
    border-right: 0;
}

.cc__input {
    flex: 1;
}

.cc__pre, .cc__input input, .cc__submit input {
    padding: 0px 9px;
    height: 34px;
    display: flex;
    align-items: center;
}

.cc__input input{
    border: 1px solid #d2d3d6;
}

.cc__submit input {
    color: #fff;
    background-color: #0072ff;
    border: none;
    transition: all .5s;
    font-weight: 600;
    padding: 0 15px;
}

.cc__submit input:hover {
    background-color: #1da4c5;
}


body.bricks-is-frontend :focus {
    outline: none;
}

.fade {
    opacity: 0;
    transition: all .3s;
}

.fade.in {
    opacity: 1;
    background: rgba(0,0,0,.5);
}

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
}

.modal__dialog {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    padding: 10px;
    z-index: 1050;
}

@media screen and (min-width: 768px) {
	.modal__dialog {
		left: 50%;
		right: auto;
		width: 600px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.modal__content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
}

@media screen and (min-width: 768px) {
	.modal__content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
}

.modal.fade .modal__dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal__dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
	.modal__content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	}
}

.modal__content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
	font-size: 14px;
}

.modal__header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.428571429px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.modal__header h4 {
	margin: 0;
    line-height: 1.428571429;
	font-size: 18px;
	color: #4d4d4d;
	font-weight: 400;
}

.modal__body {
    position: relative;
    padding: 20px;
}

.modal__body p {
	margin-bottom: 10px;
}

.modal__footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}


.icon_close {
    background: none;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
}


.modal__footer .btn {
    color: #333333;
    background-color: #e6e7e8;
    border-color: #e6e7e8;
    display: inline-block;
    padding: 7px 15px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.428571429;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
	border-width: 0px;
    -webkit-box-shadow: inset 0 0 0px 1px rgba(0,0,0,0.08);
    box-shadow: inset 0 0 0px 1px rgba(0,0,0,0.08);
}