﻿@charset "utf-8";

/*ROOT*/
:root {
	/*color set (사이트별지정)*/
	--color-main: rgba(54,194,186,1);
	--color-main-light-100: rgba(54,194,186,0.1); /*main-color-opacity 10%*/
	--color-point: rgba(34,51,89,1);
	--color-sub-point: rgba(81,136,245,1);
	/*color set(common)*/
	--color-gray-100: rgba(245,247,249,1);
	--color-gray-200: rgba(239,240,242,1);
	--color-gray-300: rgba(222,223,226,1);
	--color-gray-500: rgba(182,187,197,1);
	--color-gray-700: rgb(139, 143, 151);
	--color-gray-900: rgba(98,108,121,1);
	--color-black-300: rgba(25,31,40,1);
	--color-red: rgba(248,52,70,1);
	/*text-color*/
	--txt-color-def: rgba(25,31,40,1);
	/*font-weight*/
	--txt-thin: 100;
	--txt-light: 300;
	--txt-regular: 400;
	--txt-medium: 500;
	--txt-semibold: 600;
	--txt-bold: 700;
	--txt-extrabold: 800;
}

.buy_banner {
    width: 70%;
}

@media screen and (max-width: 960px) {
    .buy_banner {
        width: 100%;
    }
}